From 15c359003ad7a284231fbd6f7e1a4419e927ee9e Mon Sep 17 00:00:00 2001 From: Michael Yoshitaka Erlewine Date: Fri, 31 May 2013 01:46:01 -0400 Subject: [PATCH] remove redundant graceful_exits... it turns out it is just required in the lister, for whatever reason... --- decoder.py | 1 - simulator.py | 1 - templater.py | 1 - 3 files changed, 3 deletions(-) diff --git a/decoder.py b/decoder.py index 42578eb..c331344 100644 --- a/decoder.py +++ b/decoder.py @@ -239,7 +239,6 @@ def main(filename): graceful_write_csv(decoded_filename, data_dict, keys = decoded_keys) print( 'Successfully wrote decoded results to ' + decoded_filename ) - graceful_exit() if __name__ == '__main__': from sys import argv diff --git a/simulator.py b/simulator.py index 78c82db..d9d2ab8 100644 --- a/simulator.py +++ b/simulator.py @@ -98,7 +98,6 @@ def replacement(matchobj): output_file.write(output) print( 'Successfully wrote simulation to', filename ) - graceful_exit() if __name__ == '__main__': from sys import argv diff --git a/templater.py b/templater.py index ad5746e..fd14385 100644 --- a/templater.py +++ b/templater.py @@ -127,7 +127,6 @@ def item(i): output_file.close() print( 'Successfully wrote template to ' + filename ) - graceful_exit() if __name__ == '__main__': from sys import argv