Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove redundant graceful_exits... it turns out it is just required i…
…n the lister, for whatever reason...
  • Loading branch information
mitcho committed May 31, 2013
1 parent 4f1b587 commit 15c3590
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion decoder.py
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion simulator.py
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion templater.py
Expand Up @@ -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
Expand Down

0 comments on commit 15c3590

Please sign in to comment.