1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-06-18 01:13:06 -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__': if __name__ == '__main__':
ret = 0 ret = 0
try: try:
ret = run(sys.argv) ret = run(sys.argv[1:])
except KeyboardInterrupt: except KeyboardInterrupt:
sys.exit(1) sys.exit(1)
sys.exit(ret) sys.exit(ret)