mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Fix version bumping in release.py
This commit is contained in:
parent
d54ef99ea5
commit
d99b46612f
1 changed files with 2 additions and 2 deletions
|
|
@ -35,8 +35,8 @@ VERSION_LOCS = [
|
|||
os.path.join(BASE, 'beets', '__init__.py'),
|
||||
[
|
||||
(
|
||||
r'__version__\s*=\s*[\'"]([0-9\.]+)[\'"]',
|
||||
"__version__ = '{version}'",
|
||||
r'__version__\s*=\s*u[\'"]([0-9\.]+)[\'"]',
|
||||
"__version__ = u'{version}'",
|
||||
)
|
||||
]
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue