- fix problem when building callback list, patch suggested in

mailinglist thread
  https://sourceforge.net/mailarchive/forum.php?thread_name=1209418634.5888.33.camel%40solo.digium.internal&forum_name=pyst-users



git-svn-id: https://pyst.svn.sourceforge.net/svnroot/pyst/pyst/trunk@11 01a3061f-1c3a-49da-a2a0-fa5697faa6a0
develop
ralf 2010-06-18 15:24:05 +00:00
parent 08d7dc585b
commit abb2d07249
1 changed files with 2 additions and 2 deletions

View File

@ -383,8 +383,8 @@ class Manager(object):
# dispatch our events
# first build a list of the functions to execute
callbacks = self._event_callbacks.get(ev.name, [])
callbacks.extend(self._event_callbacks.get('*', []))
callbacks = (self._event_callbacks.get(ev.name, [])
+ self._event_callbacks.get('*', []))
# now execute the functions
for callback in callbacks: