Commit e2b6f95a authored by Jason R. Coombs's avatar Jason R. Coombs

Reference parsed svn version variable instead of the whole of the data. Fixes #20

parent 5a3dbe5d
......@@ -2,6 +2,12 @@
CHANGES
=======
-----
0.7.4
-----
* Issue #20: Fix comparison of parsed SVN version on Python 3.
-----
0.7.3
-----
......
......@@ -231,7 +231,7 @@ class egg_info(Command):
else:
try: svnver = int(data.splitlines()[0])
except: svnver=-1
if data<8:
if svnver<8:
log.warn("unrecognized .svn/entries format; skipping %s", base)
dirs[:] = []
continue
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment