]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2641] Fix __init__() args
authorMukund Sivaraman <muks@isc.org>
Tue, 19 Feb 2013 13:02:45 +0000 (18:32 +0530)
committerMukund Sivaraman <muks@isc.org>
Tue, 19 Feb 2013 13:02:45 +0000 (18:32 +0530)
src/bin/cmdctl/cmdctl.py.in

index 91b7434a3e582e154f563e508f14a263df72b849..884eb63fdcdcd150bdff206bf753f472f3c83f05 100755 (executable)
@@ -97,7 +97,9 @@ def check_file(file_name):
 class SecureHTTPRequestHandler(http.server.BaseHTTPRequestHandler):
     '''https connection request handler.
     Currently only GET and POST are supported.  '''
-    def __init__(self):
+    def __init__(self, request, client_address, server):
+        http.server.BaseHTTPRequestHandler.__init__(self, request,
+                                                    client_address, server)
         self.session_id = None
 
     def do_GET(self):