Skip to content

Commit

Permalink
Fix version string building in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen McMillen committed Sep 23, 2014
1 parent bafd046 commit 34a437d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import vimeo

setup(name='PyVimeo',
version='.'.join(vimeo.version),
version='.'.join(str(v) for v in vimeo.version),
description='Simple interaction with the Vimeo API.',
author='Vimeo',
author_email='support@vimeo.com',
Expand Down

0 comments on commit 34a437d

Please sign in to comment.