We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a01d1f6 commit 6d464feCopy full SHA for 6d464fe
qgist/workbench/ui_manager.py
@@ -57,6 +57,7 @@
57
from ..config import config_class
58
from ..error import (
59
Qgist_ALL_Errors,
60
+ QgistConfigFormatError,
61
QgistTypeError,
62
QgistValueError,
63
)
@@ -229,7 +230,7 @@ def _toolbutton_import_clicked(self):
229
230
self._fsm.import_workbench(config_class.import_config(fn), self._mainwindow)
231
self._update_workbenches()
232
self._uptdate_items()
- except QgistWorkbenchNameError as e:
233
+ except (QgistWorkbenchNameError, QgistConfigFormatError) as e:
234
msg_warning(e, self)
235
return
236
except Qgist_ALL_Errors as e:
0 commit comments