From 8bc2c85b5892c38ecd17449cb7b1a0f0617edcac Mon Sep 17 00:00:00 2001 From: nilshah98 Date: Wed, 12 Jun 2019 16:33:40 +0530 Subject: configparser => try, catch --- src/configuration/Appconfig.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/configuration') diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index 40bb8ef6..8c34abb8 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -54,8 +54,13 @@ class Appconfig(QtGui.QWidget): os.path.join( '.esim', 'config.ini'))) - # Need to comment below line to execute on Windows 10 - # modelica_map_json = parser_esim.get('eSim', 'MODELICA_MAP_JSON') + + # Try catch added, since eSim cannot be accessed under parser for Win10 + try: + modelica_map_json = parser_esim.get('eSim', 'MODELICA_MAP_JSON') + except: + print("Cannot access eSim in parser") + try: project_explorer = json.load(open(dictPath)) except BaseException: -- cgit