diff options
author | Rahul P | 2023-04-25 10:20:10 +0530 |
---|---|---|
committer | GitHub | 2023-04-25 10:20:10 +0530 |
commit | 624b352b701408d4eabb17fcb955ae4a4b6deef7 (patch) | |
tree | 35a040b8398f6fbc808bf9ca1c4ad08186aabefa /src/frontEnd/Application.py | |
parent | 44fcfba014e212164787da16978f849a57ccebab (diff) | |
parent | 8293597cd3263f788fea1eaa6e9bb63be02f1b72 (diff) | |
download | eSim-624b352b701408d4eabb17fcb955ae4a4b6deef7.tar.gz eSim-624b352b701408d4eabb17fcb955ae4a4b6deef7.tar.bz2 eSim-624b352b701408d4eabb17fcb955ae4a4b6deef7.zip |
Merge branch 'master' into multiple_instance
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) |