Fixed i18n related typo. nevow_service_rework
authorEdouard Tisserant
Thu, 05 Jul 2018 13:46:18 +0200
branchnevow_service_rework
changeset 2215 f808ec7dc10e
parent 2214 b9cdbcc992d5
child 2216 8ae29ec2d1dc
Fixed i18n related typo.
runtime/WampClient.py
--- 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