From 4d646aa16ac7616d8d535f11b6fba18f48bc8e4f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 11 Sep 2010 16:51:18 +0200 Subject: [PATCH] [equo] fix regression in text_repositories module, s/if/elif/ --- client/text_repositories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/text_repositories.py b/client/text_repositories.py index bb24e1671..5dc19021b 100644 --- a/client/text_repositories.py +++ b/client/text_repositories.py @@ -41,7 +41,7 @@ def repositories(options): for opt in myopts: if opt == "--force": e_req_force_update = True - if (opt == "--conflicts") and (cmd == "repo"): + elif (opt == "--conflicts") and (cmd == "repo"): e_req_conflicts = True elif opt.startswith("--"): print_error(red(" %s." % (_("Wrong parameters"),) ))