diff options
| author | 2019-05-14 23:07:55 +0100 | |
|---|---|---|
| committer | 2019-05-14 23:07:55 +0100 | |
| commit | 7ed4d5fa03b3553edc2eef44bf709914253ec733 (patch) | |
| tree | c80614defa0ae2231540a925295716ea579b199d /modules/commands | |
| parent | Add type hints to utils.irc.MessageTag (diff) | |
| signature | ||
draft/msgid isn't ratified quite yet
Diffstat (limited to 'modules/commands')
| -rw-r--r-- | modules/commands/__init__.py | 2 |
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: |
