diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-11-28 23:18:46 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-11-28 23:18:46 (GMT) |
commit | 6ed1c93c96485ee3c555d66956b3e4d1ca01f64a (patch) | |
tree | c977ca41cdc9ee837bb7a8751010225c850c82df /Tools | |
parent | 2555d9ddebee30119ee0ba6e40094e5d90bb538e (diff) | |
download | cpython-6ed1c93c96485ee3c555d66956b3e4d1ca01f64a.zip cpython-6ed1c93c96485ee3c555d66956b3e4d1ca01f64a.tar.gz cpython-6ed1c93c96485ee3c555d66956b3e4d1ca01f64a.tar.bz2 |
SVN format 9 is the same it seems
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/svneol.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/scripts/svneol.py b/Tools/scripts/svneol.py index 9e57bb4..9357c7e 100644 --- a/Tools/scripts/svneol.py +++ b/Tools/scripts/svneol.py @@ -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" |