Skip to content

Commit

Permalink
Merge pull request aboutcode-org#3891 from gotmax23/fix-syntax-warning
Browse files Browse the repository at this point in the history
textcode markup: fix SyntaxWarning in regex
  • Loading branch information
pombredanne authored Oct 4, 2024
2 parents edd4caa + 797d779 commit 5d50052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ v33.0.0 (next next, roadmap)
- New and improved copyright detection with many false positive removed
and refined detection added.

- Fix Python ``SyntaxWarning`` in textcode 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 @@ -201,7 +201,7 @@ def is_debian_tag(t):
r"|"
r"href"
r"|"
"['\"]?/>"
r"['\"]?/>"
r"|"
r"/>"
r")",
Expand Down

0 comments on commit 5d50052

Please sign in to comment.