# HG changeset patch # User Edouard Tisserant # Date 1545138491 -3600 # Node ID 590f85412835eb6596d91e3d695538cb1c41df23 # Parent e8760be772d50ca569fcd410404ac956b23e6959 Use another way to ensure compatibility with Py3 about text type. diff -r e8760be772d5 -r 590f85412835 connectors/WAMP/__init__.py --- a/connectors/WAMP/__init__.py Mon Dec 10 11:22:43 2018 +0100 +++ b/connectors/WAMP/__init__.py Tue Dec 18 14:08:11 2018 +0100 @@ -28,7 +28,7 @@ import sys import traceback from threading import Thread, Event -from builtins import str as text +from six import text_type as text from twisted.internet import reactor, threads from autobahn.twisted import wamp