Skip to content

Commit

Permalink
Fix rest of the bump for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Almad committed Dec 28, 2017
1 parent 2c8f132 commit b454dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def bump(args):
else:
version[2] += 1

version = map(str, version)
version = list(map(str, version))

module_content = "VERSION='%s'\n" % '.'.join(version)

Expand Down

0 comments on commit b454dc9

Please sign in to comment.