Skip to content

Commit bd6cea4

Browse files
committed
release.py is Py3k
1 parent 445543f commit bd6cea4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

extra/release.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env python3
22
"""A utility script for automating the beets release process.
33
"""
4-
from __future__ import division, absolute_import, print_function
5-
64
import click
75
import os
86
import re
@@ -289,7 +287,7 @@ def prep():
289287
# FIXME It should be possible to specify this as an argument.
290288
version_parts = [int(n) for n in cur_version.split('.')]
291289
version_parts[-1] += 1
292-
next_version = u'.'.join(map(unicode, version_parts))
290+
next_version = u'.'.join(map(str, version_parts))
293291
bump_version(next_version)
294292

295293

0 commit comments

Comments
 (0)