summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorscarabeus <scarabeus@gentoo.org>2010-11-02 14:05:00 +0000
committerscarabeus <scarabeus@gentoo.org>2010-11-02 14:05:00 +0000
commit05aef484d537e94d9fe90fbb677cd4ac5be443de (patch)
tree5aef48de8f86f9f54e0317aea1458daab3ff6ae7 /bin
parentde49cc90a8bebe5231ba9b143e888ffcf20ff4ad (diff)
downloadgentoolkit-05aef484d537e94d9fe90fbb677cd4ac5be443de.tar.gz
Fix arg parsing everywhere for eshowkw.
svn path=/trunk/gentoolkit/; revision=843
Diffstat (limited to 'bin')
-rw-r--r--bin/eshowkw3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/eshowkw b/bin/eshowkw
index df287a5..a64aa96 100644
--- a/bin/eshowkw
+++ b/bin/eshowkw
@@ -3,7 +3,6 @@
# 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(sys.argv)
+emain(args[1:])