Fix typos in previous commit.
authorscarabeus <scarabeus@gentoo.org>
Tue, 2 Nov 2010 14:14:31 +0000 (14:14 -0000)
committerscarabeus <scarabeus@gentoo.org>
Tue, 2 Nov 2010 14:14:31 +0000 (14:14 -0000)
svn path=/trunk/gentoolkit/; revision=845

bin/eshowkw
pym/gentoolkit/equery/keywords.py

index a64aa96813deaf9be5d4b6394e3d44b11516269e..e987cced861344dbaf82ad1fa2d0c7abdc39f298 100644 (file)
@@ -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
index cab49a7632e0738b57adc3d05d992f9df65e00d1..f6ff60714ec8a9327c5b75370b91f87cced2aafe 100644 (file)
@@ -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