Skip to content

Commit

Permalink
Fix installation in Python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Jul 15, 2014
1 parent e6b574b commit 92e491b
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 @@ -181,7 +181,7 @@ def run(self):
if TARGET_MATCH:
TARGET_VERSION = TARGET_MATCH.groups()
else:
TARGET_VERSION = (str(sys.version_info.major), str(sys.version_info.minor))
TARGET_VERSION = (str(sys.version_info[0]), str(sys.version_info[1]))


def get_packages():
Expand Down

0 comments on commit 92e491b

Please sign in to comment.