mirror of
https://github.com/jlu5/PyLink.git
synced 2024-12-25 04:02:45 +01:00
updateTS: fix typo in error message
This commit is contained in:
parent
170de377ca
commit
9d7fb4ed70
@ -1088,7 +1088,7 @@ class Protocol():
|
|||||||
|
|
||||||
our_ts = self.irc.channels[channel].ts
|
our_ts = self.irc.channels[channel].ts
|
||||||
assert type(our_ts) == int, "Wrong type for our_ts (expected int, got %s)" % type(our_ts)
|
assert type(our_ts) == int, "Wrong type for our_ts (expected int, got %s)" % type(our_ts)
|
||||||
assert type(their_ts) == int, "Wrong type for our_ts (expected int, got %s)" % type(their_ts)
|
assert type(their_ts) == int, "Wrong type for their_ts (expected int, got %s)" % type(their_ts)
|
||||||
|
|
||||||
if their_ts < our_ts:
|
if their_ts < our_ts:
|
||||||
# Their TS is older than ours. We should clear our stored modes for the channel and
|
# Their TS is older than ours. We should clear our stored modes for the channel and
|
||||||
|
Loading…
Reference in New Issue
Block a user