Skip to content

Commit

Permalink
Merge pull request #16 from Teslafly/kontron_master_pull
Browse files Browse the repository at this point in the history
Fix setup.py in python3
  • Loading branch information
hthiery committed Jun 14, 2016
2 parents 6258632 + c1c59d3 commit ab402a0
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 @@ -19,7 +19,7 @@
try:
with open(version_py, 'r') as f:
d = dict()
exec(f, d)
exec(f.read(), d)
version = d['__version__']
except IOError:
version = 'unknown'
Expand Down

0 comments on commit ab402a0

Please sign in to comment.