diff options
author | necoro <> | 2007-07-20 07:26:47 +0000 |
---|---|---|
committer | necoro <> | 2007-07-20 07:26:47 +0000 |
commit | 9cb047b6c35cddd624ffde4e3b16253a269366ba (patch) | |
tree | 33ee1adee25cf373e28a93fc9264e243a414c6cd | |
parent | d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc (diff) | |
download | portato-9cb047b6c35cddd624ffde4e3b16253a269366ba.tar.gz portato-9cb047b6c35cddd624ffde4e3b16253a269366ba.tar.bz2 portato-9cb047b6c35cddd624ffde4e3b16253a269366ba.zip |
new Plugin Scheme
Diffstat (limited to '')
-rw-r--r-- | portato/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/plugin.py b/portato/plugin.py index 06ef135..30a8c07 100644 --- a/portato/plugin.py +++ b/portato/plugin.py @@ -363,7 +363,7 @@ class PluginQueue: frontendOK = None frontends = elem.getElementsByTagName("frontends") if frontends: - nodes = f.childNodes + nodes = frontends[0].childNodes for f in nodes[0].nodeValue.strip().split(): if f == self.frontend: frontendOK = True # one positive is enough |