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