diff options
| author | Yixun Lan <dlan@gentoo.org> | 2022-06-01 18:23:49 +0800 |
|---|---|---|
| committer | Yixun Lan <dlan@gentoo.org> | 2022-06-01 18:24:41 +0800 |
| commit | b3251b763901ec5a5d7690fd8ec2885629104ee2 (patch) | |
| tree | 469999af3ed7bd9d47be81e1ec66dcd5b12ae011 /pym | |
| parent | 2fffbd450df2443bbd671f7ec760051ce3c930e9 (diff) | |
| download | gentoolkit-b3251b763901ec5a5d7690fd8ec2885629104ee2.tar.gz | |
fix missing short option "-u" for --unique-use
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'pym')
| -rw-r--r-- | pym/gentoolkit/eclean/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
