diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/karma.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/karma.py b/modules/karma.py index fbdcdacb..ef694277 100644 --- a/modules/karma.py +++ b/modules/karma.py @@ -35,7 +35,7 @@ class Module(ModuleManager.BaseModule): if not event["user"].last_karma or (time.time()-event["user" ].last_karma) >= KARMA_DELAY_SECONDS: - target = match.group(1).strip().strip("".join(WORD_STOP)) + target = match.group(1).strip().rstrip("".join(WORD_STOP)) if event["server"].irc_lower(target) == event["user"].name: if verbose: self.events.on("send.stderr").call( |
