diff options
author | nilshah98 | 2019-06-07 19:25:00 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-13 16:11:14 +0530 |
commit | 8d628dc33e1190dd1f8827bbd26f998d31d0827a (patch) | |
tree | 4e4b7875a125b9e209b6ef09336a30a6470add11 /src/configuration/Appconfig.py | |
parent | 89c637c341a281d31ccd63be65a3504d6db79882 (diff) | |
download | eSim-8d628dc33e1190dd1f8827bbd26f998d31d0827a.tar.gz eSim-8d628dc33e1190dd1f8827bbd26f998d31d0827a.tar.bz2 eSim-8d628dc33e1190dd1f8827bbd26f998d31d0827a.zip |
projectExplorer made pep8 compliant
Diffstat (limited to 'src/configuration/Appconfig.py')
-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: |