aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorPriit Laes <plaes@plaes.org>2010-07-03 00:38:34 +0300
committerPriit Laes <plaes@plaes.org>2010-07-03 00:38:34 +0300
commit59b14764044ab52d30841348c164716b77ef31f2 (patch)
tree7092e01a9318522a2d18f6bf82d93bc45afaafc5 /utils
parentClean up debug prints (diff)
downloadgsoc2010-grumpy-59b14764044ab52d30841348c164716b77ef31f2.tar.gz
gsoc2010-grumpy-59b14764044ab52d30841348c164716b77ef31f2.tar.bz2
gsoc2010-grumpy-59b14764044ab52d30841348c164716b77ef31f2.zip
Fix invalid arguments to main (should've tested first) :P
Diffstat (limited to 'utils')
-rwxr-xr-xutils/grumpy_sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/grumpy_sync.py b/utils/grumpy_sync.py
index 036a513..8c8f998 100755
--- a/utils/grumpy_sync.py
+++ b/utils/grumpy_sync.py
@@ -256,4 +256,4 @@ if __name__ == '__main__':
if len(args) != 1:
parser.error("please provide path to portagedir as first argument")
sys.exit(1)
- main(args[0], opts)
+ main(args[0])