Skip to content

Commit

Permalink
release.py is Py3k
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed Apr 6, 2015
1 parent 445543f commit bd6cea4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions extra/release.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)


Expand Down

0 comments on commit bd6cea4

Please sign in to comment.