3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-05-05 14:17:32 +02:00

nefarious: fix wrong variable in last commit

This commit is contained in:
James Lu 2016-07-10 21:01:01 -07:00
parent 8b04a51daf
commit ade0fa707e

View File

@ -1103,7 +1103,7 @@ class P10Protocol(IRCS2SProtocol):
"""Handles end of burst from our uplink.""" """Handles end of burst from our uplink."""
# Send EOB acknowledgement; this is required by the P10 specification, # Send EOB acknowledgement; this is required by the P10 specification,
# and needed if we want to be able to receive channel messages, etc. # and needed if we want to be able to receive channel messages, etc.
if source == irc.uplink: if source == self.irc.uplink:
self._send(self.irc.sid, 'EA') self._send(self.irc.sid, 'EA')
return {} return {}