Mercurial > hgsubversion
changeset 959:8b2480175bae
svnmeta: fix list not being joined in split_branch_path()
author | Patrick Mezard <patrick@mezard.eu> |
---|---|
date | Sun, 14 Oct 2012 15:29:12 +0200 |
parents | 506dcb241cef |
children | 502613f6b583 |
files | hgsubversion/svnmeta.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgsubversion/svnmeta.py +++ b/hgsubversion/svnmeta.py @@ -367,7 +367,7 @@ class SVNMeta(object): if existing: return None, None, None if path == 'trunk' or path.startswith('trunk/'): - path = path.split('/')[1:] + path = '/'.join(path.split('/')[1:]) test = 'trunk' elif path.startswith('branches/'): elts = path.split('/')