Fix regression of 1.6.4 which caused crash in modperl/modpython.

See #1283
This commit is contained in:
Alexey Sokolov
2017-02-19 10:29:49 +00:00
parent 9635658258
commit 0679957340
2 changed files with 4 additions and 0 deletions

View File

@@ -340,6 +340,7 @@ sub OnKick {}
sub OnJoining {}
sub OnJoin {}
sub OnPart {}
sub OnInvite {}
sub OnChanBufferStarting {}
sub OnChanBufferEnding {}
sub OnChanBufferPlayLine {}

View File

@@ -291,6 +291,9 @@ class Module:
def OnPart(self, Nick, Channel, sMessage=None):
pass
def OnInvite(self, Nick, sChan):
pass
def OnChanBufferStarting(self, Chan, Client):
pass