Skip to content

Commit

Permalink
Fix svn URLs on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
billsacks committed Apr 7, 2022
1 parent b1c02ab commit 02ea87e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manic/repository_svn.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ def __init__(self, component_name, repo, ignore_ancestry=False):
Repository.__init__(self, component_name, repo)
self._ignore_ancestry = ignore_ancestry
if self._branch:
self._url = os.path.join(self._url, self._branch)
self._url = self._url + '/' + self._branch
elif self._tag:
self._url = os.path.join(self._url, self._tag)
self._url = self._url + '/' + self._tag
else:
msg = "DEV_ERROR in svn repository. Shouldn't be here!"
fatal_error(msg)
Expand Down

0 comments on commit 02ea87e

Please sign in to comment.