summaryrefslogtreecommitdiffstats
path: root/pyfirstaidkit/plugins.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyfirstaidkit/plugins.py')
-rw-r--r--pyfirstaidkit/plugins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyfirstaidkit/plugins.py b/pyfirstaidkit/plugins.py
index 65ef049..3c6d27d 100644
--- a/pyfirstaidkit/plugins.py
+++ b/pyfirstaidkit/plugins.py
@@ -608,11 +608,11 @@ class PluginSystem(object):
# We see if the args line begins with any plugin name.
m = re.search("^%s "%plugin, value)
if m:
- args.append(value.strip(plugin).strip(" "))
+ args.append(value.lstrip(plugin).strip(" "))
# We also want to be able to configure separate flows
m = re.search("^%s/%s "% (plugin, flowName), value)
if m:
- args.append(value.strip(plugin).strip(" "))
+ args.append(value.lstrip(plugin+'/'+flowName).strip(" "))
infosection = getattr(Info, plugin)
infosection.unlock()