aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-19 14:37:24 +0100
committerGravatar jesopo2018-10-19 14:37:24 +0100
commit44c67ad5d974fbdfd9d30c8e077f1671d6446865 (patch)
tree63355f025c92fccd4a88a921179304c822815417
parentParse in/out wallet in the context of their relevant users (diff)
signature
Typo in modules/channel_op, 'this' -> 'self'
-rw-r--r--modules/channel_op.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_op.py b/modules/channel_op.py
index e789b4c4..3d92c451 100644
--- a/modules/channel_op.py
+++ b/modules/channel_op.py
@@ -70,7 +70,7 @@ class Module(ModuleManager.BaseModule):
def _ban(self, server, channel, ban, target):
target_user = server.get_user(target)
if channel.has_user(target_user):
- return this._ban_user(channel, ban, target_user)
+ return self._ban_user(channel, ban, target_user)
else:
if ban:
event["target"].send_ban(target)