From 8b7048e5cdce8c45271ae6c31f36ae6bc97e9abc Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sun, 1 Mar 2015 08:04:38 -0800 Subject: [PATCH] don't attempt to dump the script itself --- z64dump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/z64dump.py b/z64dump.py index 6c6de7c..1c2791a 100755 --- a/z64dump.py +++ b/z64dump.py @@ -210,7 +210,7 @@ def run(args): if __name__ == '__main__': ret = 0 try: - ret = run(sys.argv) + ret = run(sys.argv[1:]) except KeyboardInterrupt: sys.exit(1) sys.exit(ret)