Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/eclean/
Date: Wed, 01 Jun 2022 10:25:10
Message-Id: 1654079081.b3251b763901ec5a5d7690fd8ec2885629104ee2.dlan@gentoo
1 commit: b3251b763901ec5a5d7690fd8ec2885629104ee2
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 1 10:23:49 2022 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 1 10:24:41 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=b3251b76
7
8 fix missing short option "-u" for --unique-use
9
10 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
11
12 pym/gentoolkit/eclean/cli.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/pym/gentoolkit/eclean/cli.py b/pym/gentoolkit/eclean/cli.py
16 index c129d5e..e3bc21a 100644
17 --- a/pym/gentoolkit/eclean/cli.py
18 +++ b/pym/gentoolkit/eclean/cli.py
19 @@ -397,7 +397,7 @@ def parseArgs(options={}):
20 options["changed-deps"] = True
21 elif o in ("-i", "--ignore-failure"):
22 options["ignore-failure"] = True
23 - elif o in ("--unique-use"):
24 + elif o in ("-u", "--unique-use"):
25 options["unique-use"] = True
26 else:
27 return_code = False