Browse Source

committing fix for ticket #262

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2349 e5f2f494-b856-4b98-b285-d166d9295462
Jelte Jansen 15 years ago
parent
commit
31870586de
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/bin/xfrout/xfrout.py.in

+ 3 - 1
src/bin/xfrout/xfrout.py.in

@@ -58,8 +58,10 @@ VERBOSE_MODE = False
 
 class XfroutSession(BaseRequestHandler):
     def __init__(self, request, client_address, server, log):
-        BaseRequestHandler.__init__(self, request, client_address, server)
+        # The initializer for the superclass may call functions
+        # that need _log to be set, so we set it first
         self._log = log
+        BaseRequestHandler.__init__(self, request, client_address, server)
 
     def handle(self):
         fd = recv_fd(self.request.fileno())