We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 445543f commit bd6cea4Copy full SHA for bd6cea4
extra/release.py
@@ -1,8 +1,6 @@
1
#!/usr/bin/env python3
2
"""A utility script for automating the beets release process.
3
"""
4
-from __future__ import division, absolute_import, print_function
5
-
6
import click
7
import os
8
import re
@@ -289,7 +287,7 @@ def prep():
289
287
# FIXME It should be possible to specify this as an argument.
290
288
version_parts = [int(n) for n in cur_version.split('.')]
291
version_parts[-1] += 1
292
- next_version = u'.'.join(map(unicode, version_parts))
+ next_version = u'.'.join(map(str, version_parts))
293
bump_version(next_version)
294
295
0 commit comments