forcemerge 559206 559227 tags 559206 + patch thanks Hi!
Please find attached a simple patch (add a parenthesis at line 2111) to fix this bug. HTH, and thanks. Kumar
diff -Nru --exclude changelog python-central-0.6.14/pycentral.py python-central-0.6.14+nmu1/pycentral.py --- python-central-0.6.14/pycentral.py 2009-12-02 10:00:48.000000000 -0600 +++ python-central-0.6.14+nmu1/pycentral.py 2009-12-02 17:14:03.000000000 -0600 @@ -2108,7 +2108,7 @@ elif len(matching_actions) > 1: usage(sys.stderr, "ambiguous action `%s', matching actions: %s" - % (action_name, str(list(matching_actions))) + % (action_name, str(list(matching_actions)))) else: action_name = matching_actions[0]