mirror of
https://github.com/beetbox/beets.git
synced 2026-02-21 23:03:26 +01:00
release.py is Py3k
This commit is contained in:
parent
445543fb04
commit
bd6cea4204
1 changed files with 1 additions and 3 deletions
|
|
@ -1,8 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
"""A utility script for automating the beets release process.
|
||||
"""
|
||||
from __future__ import division, absolute_import, print_function
|
||||
|
||||
import click
|
||||
import os
|
||||
import re
|
||||
|
|
@ -289,7 +287,7 @@ def prep():
|
|||
# FIXME It should be possible to specify this as an argument.
|
||||
version_parts = [int(n) for n in cur_version.split('.')]
|
||||
version_parts[-1] += 1
|
||||
next_version = u'.'.join(map(unicode, version_parts))
|
||||
next_version = u'.'.join(map(str, version_parts))
|
||||
bump_version(next_version)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue