svn path=/trunk/gentoolkit/; revision=845
# 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
# 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