From: scarabeus Date: Tue, 2 Nov 2010 14:14:31 +0000 (-0000) Subject: Fix typos in previous commit. X-Git-Tag: gentoolkit-0.3.0_rc11~6 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7a0a42618f4743a28a9a01ba27a170b1945a3348;p=gentoolkit.git Fix typos in previous commit. svn path=/trunk/gentoolkit/; revision=845 --- 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