Skip to content

Commit

Permalink
pkg5 will fail here if we have updated zones from python2.6 to 2.7
Browse files Browse the repository at this point in the history
Andreas Grüninger proposed this patch on OI-discuss on 2016-10-09
  • Loading branch information
Olaf Bohlen committed Oct 17, 2016
1 parent 40e97aa commit dd56cc4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/pipeutils.py
Expand Up @@ -90,6 +90,7 @@
SimpleRPCRequestHandler
from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCDispatcher as \
SimpleRPCDispatcher
import jsonrpclib.config as rpcconfig

#
# These includes make it easier for clients to catch the specific
Expand Down Expand Up @@ -409,7 +410,7 @@ class _PipedTransport(rpc.Transport):
def __init__(self, fd, http_enc=True):
self.__pipe_file = PipeFile(fd, "client-transport")
self.__http_enc = http_enc
rpc.Transport.__init__(self)
rpc.Transport.__init__(self,config=rpcconfig.DEFAULT)
self.verbose = False
self._extra_headers = None

Expand Down

0 comments on commit dd56cc4

Please sign in to comment.