weechat- backup of me weechat setup |
git clone git://git.acid.vegas/weechat.git |
Log | Files | Refs | Archive | README |
commit ca21b51bf22405113fbfb8b653828cd06324aa12
parent 86ece458d60661b11f8264b959ad129e747ae901 Author: acidvegas <acid.vegas@acid.vegas> Date: Sun, 9 Jul 2023 04:09:23 -0400 Fixed masshl.py missing ) Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git 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) |