summaryrefslogtreecommitdiffstats
path: root/pyfirstaidkit/interpret.py
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-03-14 12:09:24 +0100
committerJoel Andres Granados <jgranado@redhat.com>2008-03-14 12:09:24 +0100
commita4c5705a47007f1f5db2c171bfe9f35916c8761d (patch)
treec65109bf3e91f8a20b3df0960f2fdc50226d6f95 /pyfirstaidkit/interpret.py
parent72b692959cb567d01ee376ef248d98004727808f (diff)
downloadfirstaidkit-a4c5705a47007f1f5db2c171bfe9f35916c8761d.tar.gz
firstaidkit-a4c5705a47007f1f5db2c171bfe9f35916c8761d.tar.xz
firstaidkit-a4c5705a47007f1f5db2c171bfe9f35916c8761d.zip
There can be a flow name exception when the user defins the plugin/flow
Diffstat (limited to 'pyfirstaidkit/interpret.py')
-rw-r--r--pyfirstaidkit/interpret.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyfirstaidkit/interpret.py b/pyfirstaidkit/interpret.py
index 713586e..7274a16 100644
--- a/pyfirstaidkit/interpret.py
+++ b/pyfirstaidkit/interpret.py
@@ -122,7 +122,7 @@ class Tasker:
elif self._config.operation.mode == "plugin":
try:
pluginSystem.autorun(self._config.operation.plugin, dependencies = False)
- except InvalidPluginNameException, e:
+ except (InvalidPluginNameException, InvalidFlowNameException), e:
pass
elif self._config.operation.mode == "task":
pass