diff options
author | Bogdano Arendartchuk <bogdano@mandriva.org> | 2007-06-12 18:17:48 +0000 |
---|---|---|
committer | Bogdano Arendartchuk <bogdano@mandriva.org> | 2007-06-12 18:17:48 +0000 |
commit | 20e7ded57ec45a0c2bbe942b5234814aea275217 (patch) | |
tree | 7833766ce97e2ae77f5300dd580bfa8ec47bc315 /RepSys/svn.py | |
parent | 56082bc3c339c8273260449baf880096fa2375ba (diff) | |
download | mgarepo-20e7ded57ec45a0c2bbe942b5234814aea275217.tar mgarepo-20e7ded57ec45a0c2bbe942b5234814aea275217.tar.gz mgarepo-20e7ded57ec45a0c2bbe942b5234814aea275217.tar.bz2 mgarepo-20e7ded57ec45a0c2bbe942b5234814aea275217.tar.xz mgarepo-20e7ded57ec45a0c2bbe942b5234814aea275217.zip |
Don't use mirror in 'co' when the user provides one URL
(unintended bonus: fixed typo in RepSys/svn.py)
Diffstat (limited to 'RepSys/svn.py')
-rw-r--r-- | RepSys/svn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepSys/svn.py b/RepSys/svn.py index 575651f..8589c4a 100644 --- a/RepSys/svn.py +++ b/RepSys/svn.py @@ -161,7 +161,7 @@ class SVN: # add one keywork "silent" that workaround the strange behavior of # pysvn's get_all, which seems to be broken, this way we also have # the same interface of svn.py from repsys 1.6.x - meth = self._cllient_wrap("status") + meth = self._client_wrap("status") silent = kwargs.pop("silent", None) st = meth(*args, **kwargs) if silent: |