summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-05-13 17:01:16 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-16 23:32:42 +0100
commitf993eb1e58f94343dc9b23fbafdbf78e1380d336 (patch)
treede58d47f29562334a88e9c5d154866d99a831465
parent6abdc135dfd9b829ddee5a3e6f0d2769b9345014 (diff)
downloadpoky-python3.tar.gz
bitbake: xmlrpc: add parameter use_builtin_typespython3
Added use_builtin_types parameter to XMLRPCProxyServer.__init__ to fix this error: ERROR: Could not connect to server 0.0.0.0:37132 : __init__() got an unexpected keyword argument 'use_builtin_types' (Bitbake rev: cabcaa8a5acf2be4f80849ee86e7ee32512e8f78) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/server/xmlrpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/xmlrpc.py b/bitbake/lib/bb/server/xmlrpc.py
index 146ca17b51..57c59a82dd 100644
--- a/bitbake/lib/bb/server/xmlrpc.py
+++ b/bitbake/lib/bb/server/xmlrpc.py
@@ -180,7 +180,7 @@ class XMLRPCProxyServer(BaseImplServer):
180 """ not a real working server, but a stub for a proxy server connection 180 """ not a real working server, but a stub for a proxy server connection
181 181
182 """ 182 """
183 def __init__(self, host, port): 183 def __init__(self, host, port, use_builtin_types=True):
184 self.host = host 184 self.host = host
185 self.port = port 185 self.port = port
186 186