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/commands/co.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/commands/co.py')
-rw-r--r-- | RepSys/commands/co.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepSys/commands/co.py b/RepSys/commands/co.py index f2b4d64..693897a 100644 --- a/RepSys/commands/co.py +++ b/RepSys/commands/co.py @@ -23,7 +23,7 @@ def parse_options(): opts, args = parser.parse_args() if len(args) not in (1, 2): raise Error, "invalid arguments" - opts.pkgdirurl = default_parent(args[0]) + opts.pkgdirurl = args[0] if len(args) == 2: opts.path = args[1] else: |