Fix typo (_construct_message -> _create_message).

This commit is contained in:
Tony Young 2014-02-04 02:53:03 -05:00
parent 38ca472ff1
commit e92a981f1a
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class IRCv3_1Support(sasl.SASLSupport, tls.TLSSupport):
self._sync_user(nick, user, host)
# Emit a fake join message.
fakemsg = self._construct_message('JOIN', channels, source=message.source)
fakemsg = self._create_message('JOIN', channels, source=message.source)
super().on_raw_join(fakemsg)
if account == NO_ACCOUNT: