diff options
author | Martin Sivak <msivak@redhat.com> | 2010-08-24 16:17:10 +0200 |
---|---|---|
committer | Martin Sivak <msivak@redhat.com> | 2010-08-24 16:17:10 +0200 |
commit | 05b78d2a5c4101e552954645df018b21aa32b8fb (patch) | |
tree | 88ce337f89088b04fd18e1a38d4fc1c7d2924b21 /pyfirstaidkit/plugins.py | |
parent | f273fe2502adf3023d816c9f495fad12140c9ddb (diff) | |
download | firstaidkit-05b78d2a5c4101e552954645df018b21aa32b8fb.tar.gz firstaidkit-05b78d2a5c4101e552954645df018b21aa32b8fb.tar.xz firstaidkit-05b78d2a5c4101e552954645df018b21aa32b8fb.zip |
Improve the user experience
- Expert tab is hidden by default
- Config dialog checks the format of entered values
- Example plugin for dialogs updated
Diffstat (limited to 'pyfirstaidkit/plugins.py')
-rw-r--r-- | pyfirstaidkit/plugins.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyfirstaidkit/plugins.py b/pyfirstaidkit/plugins.py index 303cfc9..c0f1361 100644 --- a/pyfirstaidkit/plugins.py +++ b/pyfirstaidkit/plugins.py @@ -280,7 +280,8 @@ class Plugin(object): message = func+" raised "+str(e)) self._reporting.stop(level = TASK, origin = self, message = func) - pass + if self._interpret._config.system.debug: + raise return (self._state, self._result) |