summaryrefslogtreecommitdiff
path: root/miniirc_idc.py
diff options
context:
space:
mode:
Diffstat (limited to 'miniirc_idc.py')
-rw-r--r--miniirc_idc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miniirc_idc.py b/miniirc_idc.py
index 48dc7c2..273dc62 100644
--- a/miniirc_idc.py
+++ b/miniirc_idc.py
@@ -52,7 +52,7 @@ class IDC(miniirc.IRC):
if msg_type == 'NOTICE':
command = 'NOTICE'
elif msg_type == 'ACTION':
- command = f'\x01ACTION {msg}\x01'
+ msg = f'\x01ACTION {msg}\x01'
args = [self.current_nick, msg]
elif idc_cmd == 'CHANMSG':
command = 'PRIVMSG'