aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-14 23:07:55 +0100
committerGravatar jesopo2019-05-14 23:07:55 +0100
commit7ed4d5fa03b3553edc2eef44bf709914253ec733 (patch)
treec80614defa0ae2231540a925295716ea579b199d
parentAdd type hints to utils.irc.MessageTag (diff)
signature
draft/msgid isn't ratified quite yet
-rw-r--r--modules/commands/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/__init__.py b/modules/commands/__init__.py
index ff0be268..2b720faf 100644
--- a/modules/commands/__init__.py
+++ b/modules/commands/__init__.py
@@ -7,7 +7,7 @@ COMMAND_METHODS = ["PRIVMSG", "NOTICE"]
REGEX_ARG_NUMBER = re.compile(r"\$(\d+)(-?)")
-MSGID_TAG = utils.irc.MessageTag("msgid", "draft/msgid")
+MSGID_TAG = utils.irc.MessageTag(None, "draft/msgid")
def _command_method_validate(s):
if s.upper() in COMMAND_METHODS: