diff -r c3c3d1318130 -r 69dfdb26f600 runtime/WampClient.py --- a/runtime/WampClient.py Tue Aug 15 17:01:51 2017 +0300 +++ b/runtime/WampClient.py Tue Aug 15 22:38:43 2017 +0300 @@ -108,19 +108,19 @@ # create a WAMP application session factory component_config = types.ComponentConfig( - realm = WSClientConf["realm"], - extra = {"ID": WSClientConf["ID"]}) + realm=WSClientConf["realm"], + extra={"ID": WSClientConf["ID"]}) session_factory = wamp.ApplicationSessionFactory( - config = component_config) + config=component_config) session_factory.session = WampSession # create a WAMP-over-WebSocket transport client factory transport_factory = ReconnectingWampWebSocketClientFactory( session_factory, - url = WSClientConf["url"], - serializers = [MsgPackSerializer()], - debug = False, - debug_wamp = False) + url=WSClientConf["url"], + serializers=[MsgPackSerializer()], + debug=False, + debug_wamp=False) # start the client from a Twisted endpoint conn = connectWS(transport_factory)