Skip to content

Commit

Permalink
fix six check message
Browse files Browse the repository at this point in the history
version is `distutils.version`
  • Loading branch information
minrk committed Mar 23, 2014
1 parent 59e1509 commit 37320c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ def check(self):
if not is_min_version(six.__version__, self.min_version):
raise CheckFailed(
"Requires six %s or later. Found %s." %
(self.min_version, version))
(self.min_version, six.__version__))

return "using six version %s" % six.__version__

Expand Down

0 comments on commit 37320c3

Please sign in to comment.