From ca21b51bf22405113fbfb8b653828cd06324aa12 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sun, 9 Jul 2023 04:09:23 -0400 Subject: [PATCH] Fixed masshl.py missing ) --- scripts/python/masshl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/python/masshl.py b/scripts/python/masshl.py index 969d2d3..59df40a 100644 --- a/scripts/python/masshl.py +++ b/scripts/python/masshl.py @@ -24,7 +24,7 @@ def masshl_cmd_cb(data, buffer, args): channel = weechat.buffer_get_string(buffer, 'localvar_channel') nicklist = weechat.infolist_get('irc_nick', '', server+','+channel) while weechat.infolist_next(nicklist): - nicks.append(weechat.infolist_string(nicklist, 'name') + nicks.append(weechat.infolist_string(nicklist, 'name')) weechat.infolist_free(nicklist) del server, channel, nicklist nicks.pop(0)