aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-23 16:11:41 +0000
committerGravatar jesopo2019-02-23 16:11:41 +0000
commitf4a403836b4c1298cde576fb81afc838ee7b57dd (patch)
tree213bae3eb18788e299c1ce17c2d331f6fd658de7 /modules
parent.upper() command in IRCParsedLine.format() (diff)
signature
!raw needs to parse the line it's given in to an IRCParsedLine now
Diffstat (limited to 'modules')
-rw-r--r--modules/admin.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/admin.py b/modules/admin.py
index 618978e0..24fa22a3 100644
--- a/modules/admin.py
+++ b/modules/admin.py
@@ -18,7 +18,8 @@ class Module(ModuleManager.BaseModule):
:usage: <raw line>
:permission: raw
"""
- event["server"].send(event["args"])
+ line = utils.irc.parse_line(event["args"])
+ event["server"].send(line)
@utils.hook("received.command.part")
def part(self, event):