summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscarabeus <scarabeus@gentoo.org>2010-11-02 14:14:31 +0000
committerscarabeus <scarabeus@gentoo.org>2010-11-02 14:14:31 +0000
commit7a0a42618f4743a28a9a01ba27a170b1945a3348 (patch)
tree4bf991f5cba750827943a22e9daa620f319081b6
parenta941e1b0c9d8e110c436e3bc81cb0315bb4602ba (diff)
downloadgentoolkit-7a0a42618f4743a28a9a01ba27a170b1945a3348.tar.gz
Fix typos in previous commit.
svn path=/trunk/gentoolkit/; revision=845
-rw-r--r--bin/eshowkw3
-rw-r--r--pym/gentoolkit/equery/keywords.py3
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/eshowkw b/bin/eshowkw
index a64aa96..e987cce 100644
--- a/bin/eshowkw
+++ b/bin/eshowkw
@@ -3,6 +3,7 @@
# Copyright 2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
+import sys
from gentoolkit.eshowkw import main as emain
-emain(args[1:])
+sys.exit(emain(sys.argv[1:])) \ No newline at end of file
diff --git a/pym/gentoolkit/equery/keywords.py b/pym/gentoolkit/equery/keywords.py
index cab49a7..f6ff607 100644
--- a/pym/gentoolkit/equery/keywords.py
+++ b/pym/gentoolkit/equery/keywords.py
@@ -2,8 +2,7 @@
# Copyright 2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-import sys
from gentoolkit.eshowkw import main as emain
def main(input_args):
- args.extend(input_args) \ No newline at end of file
+ emain(input_args) \ No newline at end of file