Commit 6ed1c93c authored by Benjamin Peterson's avatar Benjamin Peterson

SVN format 9 is the same it seems

parent 2555d9dd
......@@ -39,9 +39,9 @@ def propfiles(root, fn):
format = int(open(os.path.join(root, ".svn", "format")).read().strip())
except IOError:
return []
if format == 8:
# In version 8, committed props are stored in prop-base,
# local modifications in props
if format in (8, 9):
# In version 8 and 9, committed props are stored in prop-base, local
# modifications in props
return [os.path.join(root, ".svn", "prop-base", fn+".svn-base"),
os.path.join(root, ".svn", "props", fn+".svn-work")]
raise ValueError, "Unknown repository format"
......
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