1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-18 05:23:22 -07:00

don't attempt to dump the script itself

This commit is contained in:
Connor Olding 2015-03-01 08:04:38 -08:00
parent 6bcf6de420
commit 8b7048e5cd

View File

@ -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)