Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoolkit r845 - in trunk/gentoolkit: bin pym/gentoolkit/equery
Date: Tue, 02 Nov 2010 14:14:35
Message-Id: 20101102141431.D356020051@flycatcher.gentoo.org
1 Author: scarabeus
2 Date: 2010-11-02 14:14:31 +0000 (Tue, 02 Nov 2010)
3 New Revision: 845
4
5 Modified:
6 trunk/gentoolkit/bin/eshowkw
7 trunk/gentoolkit/pym/gentoolkit/equery/keywords.py
8 Log:
9 Fix typos in previous commit.
10
11 Modified: trunk/gentoolkit/bin/eshowkw
12 ===================================================================
13 --- trunk/gentoolkit/bin/eshowkw 2010-11-02 14:07:08 UTC (rev 844)
14 +++ trunk/gentoolkit/bin/eshowkw 2010-11-02 14:14:31 UTC (rev 845)
15 @@ -3,6 +3,7 @@
16 # Copyright 2010 Gentoo Foundation
17 # Distributed under the terms of the GNU General Public License v2
18
19 +import sys
20 from gentoolkit.eshowkw import main as emain
21
22 -emain(args[1:])
23 +sys.exit(emain(sys.argv[1:]))
24 \ No newline at end of file
25
26 Modified: trunk/gentoolkit/pym/gentoolkit/equery/keywords.py
27 ===================================================================
28 --- trunk/gentoolkit/pym/gentoolkit/equery/keywords.py 2010-11-02 14:07:08 UTC (rev 844)
29 +++ trunk/gentoolkit/pym/gentoolkit/equery/keywords.py 2010-11-02 14:14:31 UTC (rev 845)
30 @@ -2,8 +2,7 @@
31 # Copyright 2010 Gentoo Foundation
32 # Distributed under the terms of the GNU General Public License v2
33
34 -import sys
35 from gentoolkit.eshowkw import main as emain
36
37 def main(input_args):
38 - args.extend(input_args)
39 \ No newline at end of file
40 + emain(input_args)
41 \ No newline at end of file