mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Prettier format for latency.
This commit is contained in:
parent
e473c53726
commit
c6bec174c4
@ -282,7 +282,7 @@ class Network(callbacks.Privmsg):
|
|||||||
now = time.time()
|
now = time.time()
|
||||||
if irc in self._latency:
|
if irc in self._latency:
|
||||||
(replyIrc, when) = self._latency.pop(irc)
|
(replyIrc, when) = self._latency.pop(irc)
|
||||||
replyIrc.reply('%s seconds.' % (now-when))
|
replyIrc.reply('%.2f seconds.' % (now-when))
|
||||||
|
|
||||||
def latency(self, irc, msg, args):
|
def latency(self, irc, msg, args):
|
||||||
"""[<network>]
|
"""[<network>]
|
||||||
@ -293,7 +293,7 @@ class Network(callbacks.Privmsg):
|
|||||||
"""
|
"""
|
||||||
network = self._getNetwork(irc, args)
|
network = self._getNetwork(irc, args)
|
||||||
otherIrc = self._getIrc(network)
|
otherIrc = self._getIrc(network)
|
||||||
otherIrc.queueMsg(ircmsgs.ping('Latency check.'))
|
otherIrc.queueMsg(ircmsgs.ping('Latency check (from %s).' % msg.nick))
|
||||||
self._latency[otherIrc] = (irc, time.time())
|
self._latency[otherIrc] = (irc, time.time())
|
||||||
|
|
||||||
# XXX join
|
# XXX join
|
||||||
|
Loading…
Reference in New Issue
Block a user