Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/connection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/connection.py b/src/common/connection.py
index e1cea9b8c..0d4125a35 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -1632,7 +1632,7 @@ class Connection(CommonConnection, ConnectionHandlers):
iq.addChild(name='ping', namespace=nbxmpp.NS_PING)
iq.setID(id_)
def _on_response(resp):
- timePong = time_time()
+ timePong = time.time()
if not nbxmpp.isResultNode(resp):
gajim.nec.push_incoming_event(PingErrorEvent(None, conn=self,
contact=pingTo))
@@ -1641,7 +1641,7 @@ class Connection(CommonConnection, ConnectionHandlers):
gajim.nec.push_incoming_event(PingReplyEvent(None, conn=self,
contact=pingTo, seconds=timeDiff, control=control))
if pingTo:
- timePing = time_time()
+ timePing = time.time()
self.connection.SendAndCallForResponse(iq, _on_response)
else:
self.connection.SendAndCallForResponse(iq, self._on_xmpp_ping_answer)