Skip to content

Commit 02ea87e

Browse files
committed
Fix svn URLs on Windows
Resolves ESMCI/manage_externals#166
1 parent b1c02ab commit 02ea87e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manic/repository_svn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ def __init__(self, component_name, repo, ignore_ancestry=False):
4444
Repository.__init__(self, component_name, repo)
4545
self._ignore_ancestry = ignore_ancestry
4646
if self._branch:
47-
self._url = os.path.join(self._url, self._branch)
47+
self._url = self._url + '/' + self._branch
4848
elif self._tag:
49-
self._url = os.path.join(self._url, self._tag)
49+
self._url = self._url + '/' + self._tag
5050
else:
5151
msg = "DEV_ERROR in svn repository. Shouldn't be here!"
5252
fatal_error(msg)

0 commit comments

Comments
 (0)