[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r16664: {torflow} Need to explicitly call parent's constructor when we have a (torflow/branches/gsoc2008)
Author: mikeperry
Date: 2008-08-26 16:17:44 -0400 (Tue, 26 Aug 2008)
New Revision: 16664
Modified:
torflow/branches/gsoc2008/soat.py
Log:
Need to explicitly call parent's constructor when we have a different number
of arguments (fix for DNSHandler exception).
Modified: torflow/branches/gsoc2008/soat.py
===================================================================
--- torflow/branches/gsoc2008/soat.py 2008-08-26 19:13:54 UTC (rev 16663)
+++ torflow/branches/gsoc2008/soat.py 2008-08-26 20:17:44 UTC (rev 16664)
@@ -127,6 +127,7 @@
Monitors for REMAP events (see check_dns_rebind())
'''
def __init__(self, exit_node_scanner):
+ EventHandler.__init__(self)
self.__soat = exit_node_scanner
def stream_status_event(self, event):