diff options
author | Rahul P | 2022-09-17 23:32:00 +0530 |
---|---|---|
committer | GitHub | 2022-09-17 23:32:00 +0530 |
commit | 7c1f5eacbc233bd365d1fc42c11aa3163f7947e1 (patch) | |
tree | 9ed3cd0765e85524e820590096bd7431b78db528 /src/frontEnd/Application.py | |
parent | 2e399ea70b1aee563ed7be944d78d8501fcd0f8e (diff) | |
parent | 73b784851e40ab6b607a70bf151fe2fa4443e218 (diff) | |
download | eSim-7c1f5eacbc233bd365d1fc42c11aa3163f7947e1.tar.gz eSim-7c1f5eacbc233bd365d1fc42c11aa3163f7947e1.tar.bz2 eSim-7c1f5eacbc233bd365d1fc42c11aa3163f7947e1.zip |
Merge pull request #222 from rahulp13/master
Fix explorer file open and circuit element crash
Diffstat (limited to 'src/frontEnd/Application.py')
-rw-r--r-- | src/frontEnd/Application.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index d3ef020f..7588b1a1 100644 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -10,11 +10,11 @@ # BUGS: --- # NOTES: --- # AUTHOR: Fahim Khan, fahim.elex@gmail.com -# MODIFIED: Rahul Paknikar, rahulp@iitb.ac.in +# MAINTAINED: Rahul Paknikar, rahulp@cse.iitb.ac.in # Sumanto Kar, sumantokar@iitb.ac.in # ORGANIZATION: eSim Team at FOSSEE, IIT Bombay # CREATED: Tuesday 24 February 2015 -# REVISION: Monday 31 January 2022 +# REVISION: Tuesday 13 September 2022 # ========================================================================= import os @@ -949,4 +949,7 @@ def main(args): # Call main function if __name__ == '__main__': # Create and display the splash screen - main(sys.argv) + try: + main(sys.argv) + except Exception as err: + print("Error: ", err) |