Skip to content

Commit

Permalink
Fixed use of wrong wrapper
Browse files Browse the repository at this point in the history
Configuration wasn't given to the request handler
  • Loading branch information
tcalmant committed Dec 9, 2018
1 parent f91abbd commit 95a318a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonrpclib/SimpleJSONRPCServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ def __init__(self, *args, **kwargs):
super(RequestHandlerWrapper, self).__init__(*args, **kwargs)

# Set up the server
socketserver.TCPServer.__init__(self, addr, requestHandler,
socketserver.TCPServer.__init__(self, addr, RequestHandlerWrapper,
bind_and_activate)

# Windows-specific
Expand Down

0 comments on commit 95a318a

Please sign in to comment.