Skip to content

Commit

Permalink
release.py: fix version regex (remove u'' string prefix)
Browse files Browse the repository at this point in the history
  • Loading branch information
wisp3rwind committed Aug 20, 2022
1 parent 18ab441 commit fafddce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def release():
os.path.join(BASE, 'beets', '__init__.py'),
[
(
r'__version__\s*=\s*u[\'"]([0-9\.]+)[\'"]',
r'__version__\s*=\s*[\'"]([0-9\.]+)[\'"]',
"__version__ = '{version}'",
)
]
Expand Down

0 comments on commit fafddce

Please sign in to comment.