Don't catch unexpected GuiConfig exceptions

This commit is contained in:
Etoh 2013-10-13 21:01:22 +01:00
parent 066fe70dd5
commit f545ada34a

View File

@ -215,7 +215,7 @@ class ConfigurationGetter(object):
if(self._config['noGui'] == False):
for key, value in self._promptForMissingArguments().items():
self._config[key] = value
except:
except GuiConfiguration.WindowClosed:
sys.exit()