From a5ae5fc7033a0d13d999713620a2816b5aa3bc21 Mon Sep 17 00:00:00 2001 From: Bogdano Arendartchuk Date: Mon, 13 Nov 2006 20:20:17 +0000 Subject: Fixed undeclared name "pkgdirurl" in "co" subcommand. Replaced url by pkgdirurl, as in the rest of the code. --- RepSys/commands/co.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RepSys/commands') diff --git a/RepSys/commands/co.py b/RepSys/commands/co.py index 0c9d2dc..f2b4d64 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.url = default_parent(args[0]) + opts.pkgdirurl = default_parent(args[0]) if len(args) == 2: opts.path = args[1] else: -- cgit v1.2.1