Skip to content

Commit

Permalink
Combined lines 40 and 41
Browse files Browse the repository at this point in the history
  • Loading branch information
BullShark committed Apr 18, 2012
1 parent d67993c commit 4f81601
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions wr.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ def wake_room(data, buffer, args):
infolist = weechat.infolist_get('irc_nick', '', server + ',' + channel)
nicklist = ''
while weechat.infolist_next(infolist):
nicklist += weechat.infolist_string(infolist, 'name')
nicklist += ' '
nicklist += weechat.infolist_string(infolist, 'name') + ' '
weechat.command(weechat.current_buffer(), nicklist)
weechat.infolist_free(infolist)
return weechat.WEECHAT_RC_OK

0 comments on commit 4f81601

Please sign in to comment.