runtime/WampClient.py
changeset 2537 eb4a4cc41914
parent 2487 6a4f9a061994
child 2581 20eb4e7a0647
--- a/runtime/WampClient.py	Wed Mar 13 10:19:30 2019 +0300
+++ b/runtime/WampClient.py	Wed Mar 13 11:47:03 2019 +0300
@@ -135,7 +135,7 @@
             self.register(GetCallee(name), u'.'.join((ID, name)), registerOptions)
 
         for name in SubscribedEvents:
-            self.subscribe(GetCallee(name), unicode(name))
+            self.subscribe(GetCallee(name), text(name))
 
         for func in DoOnJoin:
             func(self)
@@ -151,7 +151,7 @@
 
     def publishWithOwnID(self, eventID, value):
         ID = self.config.extra["ID"]
-        self.publish(unicode(ID+'.'+eventID), value)
+        self.publish(text(ID+'.'+eventID), value)
 
 
 class ReconnectingWampWebSocketClientFactory(WampWebSocketClientFactory, ReconnectingClientFactory):
@@ -343,12 +343,12 @@
 
 def PublishEvent(eventID, value):
     if getWampStatus() == "Attached":
-        _WampSession.publish(unicode(eventID), value)
+        _WampSession.publish(text(eventID), value)
 
 
 def PublishEventWithOwnID(eventID, value):
     if getWampStatus() == "Attached":
-        _WampSession.publishWithOwnID(unicode(eventID), value)
+        _WampSession.publishWithOwnID(text(eventID), value)
 
 
 # WEB CONFIGURATION INTERFACE