summaryrefslogtreecommitdiff
path: root/portato/plugin.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-04-09 21:19:14 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-04-09 21:19:14 +0200
commite126922d622f89890fdbd57f2725848300d9a9ae (patch)
treecb130d53a14f22e835e02e45cdbc010789f5b0c4 /portato/plugin.py
parent011a8cd521852f7d79ac6c8c6586860c7045be7a (diff)
parent0ab7e4060d6205cdac4d4e8251977893c92cbad1 (diff)
downloadportato-e126922d622f89890fdbd57f2725848300d9a9ae.tar.gz
portato-e126922d622f89890fdbd57f2725848300d9a9ae.tar.bz2
portato-e126922d622f89890fdbd57f2725848300d9a9ae.zip
Merged in fix from trunk
Diffstat (limited to 'portato/plugin.py')
-rw-r--r--portato/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/plugin.py b/portato/plugin.py
index ab5564f..08e651b 100644
--- a/portato/plugin.py
+++ b/portato/plugin.py
@@ -451,7 +451,7 @@ class PluginQueue:
elif connect.depend_plugin == "-*":
self.hooks[hook.hook][2][0:0] = [connect]
else:
- named = [x.plugin.name for x in self.hooks[hook.hook][2]]
+ named = [x.hook.plugin.name for x in self.hooks[hook.hook][2]]
if connect.depend_plugin in named:
self.hooks[hook.hook][2].insert(named.index(connect.depend_plugin)+1, connect)
else: