Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

textcode markup: fix SyntaxWarning in regex #3891

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ v33.0.0 (next next, roadmap)
- Update link references of ownership from nexB to aboutcode-org
See https://github.com/aboutcode-org/scancode-toolkit/issues/3885

- Fix Python ``SyntaxWarning`` in extractcode module.


v32.2.1 - 2024-07-02
---------------------
Expand Down
2 changes: 1 addition & 1 deletion src/textcode/markup.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def demarkup(location):
r'|'
r'href'
r'|'
'[\'"]?\/\>'
r'[\'"]?\/\>'
r'|'
r'/>'
r')',
Expand Down
Loading