156 if __name__ == "__main__": |
156 if __name__ == "__main__": |
157 try: |
157 try: |
158 main(sys.argv) |
158 main(sys.argv) |
159 except SystemExit: |
159 except SystemExit: |
160 raise |
160 raise |
161 except: |
161 except Exception: |
162 print("""An internal error occured. Please report all the output of""" |
162 print("""An internal error occured. Please report all the output of""" |
163 """ the program,\nincluding the following traceback, to""" |
163 """ the program,\nincluding the following traceback, to""" |
164 """ eric-bugs@die-offenbachs.de.\n""") |
164 """ eric-bugs@die-offenbachs.de.\n""") |
165 raise |
165 raise |