Merge remote-tracking branch 'refs/remotes/vnpy/master'

This commit is contained in:
msincenselee 2015-11-05 00:32:47 +08:00
commit 09646b6158

View File

@ -182,7 +182,7 @@ class EventEngine:
# 尝试获取该事件类型对应的处理函数列表,若无则忽略该次注销请求 # 尝试获取该事件类型对应的处理函数列表,若无则忽略该次注销请求
try: try:
handlerList = self.handlers[type_] handlerList = self.__handlers[type_]
# 如果该函数存在于列表中,则移除 # 如果该函数存在于列表中,则移除
if handler in handlerList: if handler in handlerList: