aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--RepSys/mirror.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/RepSys/mirror.py b/RepSys/mirror.py
index 8502b82..1e9e9c2 100644
--- a/RepSys/mirror.py
+++ b/RepSys/mirror.py
@@ -47,6 +47,8 @@ def enabled(wcurl=None):
def mirror_relocate(oldparent, newparent, url, wcpath):
svn = SVN()
newurl = relocate_path(oldparent, newparent, url)
+ # note that svn.relocate requires paths without trailling slashes,
+ # http://foo/svn/bar/baz/ will fail
svn.relocate(url, newurl, wcpath)
return newurl