mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
fix incorrect type for empty tags
This commit is contained in:
@ -42,7 +42,7 @@ def parse_message(s):
|
||||
(tags, s) = s.split(' ', 1)
|
||||
tags = parse_tags(tags[1:])
|
||||
else:
|
||||
tags = []
|
||||
tags = {}
|
||||
if ' :' in s:
|
||||
(other_tokens, trailing_param) = s.split(' :', 1)
|
||||
tokens = list(filter(bool, other_tokens.split(' '))) + [trailing_param]
|
||||
|
Reference in New Issue
Block a user