diff options
author | Sunil Shetye | 2019-06-14 10:38:23 +0530 |
---|---|---|
committer | GitHub | 2019-06-14 10:38:23 +0530 |
commit | fd265d087ff6dc7a09df400b165043e61bb7d0c0 (patch) | |
tree | 2d08a48bcc268154c5e0f25f4c3e94d0ac9e4f7f /src/configuration | |
parent | cfc34bb19977e738582620802415ccde27a03039 (diff) | |
parent | 1d4ee6b6c1254657c497673838922e746f339eca (diff) | |
download | eSim-fd265d087ff6dc7a09df400b165043e61bb7d0c0.tar.gz eSim-fd265d087ff6dc7a09df400b165043e61bb7d0c0.tar.bz2 eSim-fd265d087ff6dc7a09df400b165043e61bb7d0c0.zip |
Merge pull request #77 from nilshah98/clean
Bugs resolved and minor fixes
Diffstat (limited to 'src/configuration')
-rw-r--r-- | src/configuration/Appconfig.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index 8c34abb8..0b34e3fc 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -58,9 +58,9 @@ class Appconfig(QtGui.QWidget): # Try catch added, since eSim cannot be accessed under parser for Win10 try: modelica_map_json = parser_esim.get('eSim', 'MODELICA_MAP_JSON') - except: + except BaseException: print("Cannot access eSim in parser") - + try: project_explorer = json.load(open(dictPath)) except BaseException: |