diff options
author | Priit Laes <plaes@plaes.org> | 2010-07-03 00:38:34 +0300 |
---|---|---|
committer | Priit Laes <plaes@plaes.org> | 2010-07-03 00:38:34 +0300 |
commit | 59b14764044ab52d30841348c164716b77ef31f2 (patch) | |
tree | 7092e01a9318522a2d18f6bf82d93bc45afaafc5 /utils | |
parent | Clean up debug prints (diff) | |
download | gsoc2010-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-x | utils/grumpy_sync.py | 2 |
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]) |