Fixed i18n related typo.
--- 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