From 7a0a42618f4743a28a9a01ba27a170b1945a3348 Mon Sep 17 00:00:00 2001 From: scarabeus Date: Tue, 2 Nov 2010 14:14:31 +0000 Subject: [PATCH] Fix typos in previous commit. svn path=/trunk/gentoolkit/; revision=845 --- bin/eshowkw | 3 ++- pym/gentoolkit/equery/keywords.py | 3 +-- 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 -- 2.26.2