diff options
| author | 2019-10-31 15:35:53 +0000 | |
|---|---|---|
| committer | 2019-10-31 15:35:53 +0000 | |
| commit | a73629bbf7e610b9d597a8169691a3ec61192faf (patch) | |
| tree | b7aadab57747d7714fd129dd6ee86bdfe5b331ad /modules/line_handler/__init__.py | |
| parent | 'element.contents' -> 'element.children' for consistency (diff) | |
| signature | ||
format and print CHGHOST events
Diffstat (limited to 'modules/line_handler/__init__.py')
| -rw-r--r-- | modules/line_handler/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/line_handler/__init__.py b/modules/line_handler/__init__.py index b4146813..5001266c 100644 --- a/modules/line_handler/__init__.py +++ b/modules/line_handler/__init__.py @@ -204,7 +204,7 @@ class Module(ModuleManager.BaseModule): # IRCv3 CHGHOST, a user's username and/or hostname has changed @utils.hook("raw.received.chghost") def chghost(self, event): - user.chghost(event) + user.chghost(self.events, event) # IRCv3 SETNAME, to change a user's realname @utils.hook("raw.received.setname") |
