64 if __name__ == "__main__": |
64 if __name__ == "__main__": |
65 try: |
65 try: |
66 main(sys.argv) |
66 main(sys.argv) |
67 except SystemExit: |
67 except SystemExit: |
68 raise |
68 raise |
69 except: |
69 except Exception: |
70 print( |
70 print( |
71 "\nAn internal error occured. Please report all the output of the" |
71 "\nAn internal error occured. Please report all the output of the" |
72 " program, \nincluding the following traceback, to" |
72 " program, \nincluding the following traceback, to" |
73 " eric-bugs@eric-ide.python-projects.org.\n") |
73 " eric-bugs@eric-ide.python-projects.org.\n") |
74 raise |
74 raise |