From b3251b763901ec5a5d7690fd8ec2885629104ee2 Mon Sep 17 00:00:00 2001 From: Yixun Lan Date: Wed, 1 Jun 2022 18:23:49 +0800 Subject: fix missing short option "-u" for --unique-use Signed-off-by: Yixun Lan --- pym/gentoolkit/eclean/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/eclean/cli.py b/pym/gentoolkit/eclean/cli.py index c129d5e..e3bc21a 100644 --- a/pym/gentoolkit/eclean/cli.py +++ b/pym/gentoolkit/eclean/cli.py @@ -397,7 +397,7 @@ def parseArgs(options={}): options["changed-deps"] = True elif o in ("-i", "--ignore-failure"): options["ignore-failure"] = True - elif o in ("--unique-use"): + elif o in ("-u", "--unique-use"): options["unique-use"] = True else: return_code = False -- cgit v1.2.3