BIND 10 trac2641_3, updated. 80b1a680ca8b5ac8eda1b0b6ccb665e243e34182 [2641] Fix __init__() args
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Feb 19 13:04:04 UTC 2013
The branch, trac2641_3 has been updated
via 80b1a680ca8b5ac8eda1b0b6ccb665e243e34182 (commit)
from 77af0818a39b800189928ae950839a43f3d8f2d9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 80b1a680ca8b5ac8eda1b0b6ccb665e243e34182
Author: Mukund Sivaraman <muks at isc.org>
Date: Tue Feb 19 18:32:45 2013 +0530
[2641] Fix __init__() args
-----------------------------------------------------------------------
Summary of changes:
src/bin/cmdctl/cmdctl.py.in | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/bin/cmdctl/cmdctl.py.in b/src/bin/cmdctl/cmdctl.py.in
index 91b7434..884eb63 100755
--- a/src/bin/cmdctl/cmdctl.py.in
+++ b/src/bin/cmdctl/cmdctl.py.in
@@ -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):
More information about the bind10-changes
mailing list