runtime/WampClient.py
branchnevow_service_rework
changeset 2215 f808ec7dc10e
parent 2212 cf1718962567
child 2218 7a4deed94eb2
--- a/runtime/WampClient.py	Thu Jul 05 13:45:24 2018 +0200
+++ b/runtime/WampClient.py	Thu Jul 05 13:46:18 2018 +0200
@@ -144,14 +144,14 @@
 
     def clientConnectionFailed(self, connector, reason):
         if self.continueTrying:
-            print(_("WAMP Client connection failed (%s) .. retrying .." % time.ctime()))
+            print(_("WAMP Client connection failed (%s) .. retrying ..") % time.ctime())
             super(ReconnectingWampWebSocketClientFactory, self).clientConnectionFailed(connector, reason)
         else:
             del connector
 
     def clientConnectionLost(self, connector, reason):
         if self.continueTrying:
-            print(_("WAMP Client connection lost (%s) .. retrying .." % time.ctime()))
+            print(_("WAMP Client connection lost (%s) .. retrying ..") % time.ctime())
             super(ReconnectingWampWebSocketClientFactory, self).clientConnectionFailed(connector, reason)
         else:
             del connector