Skip to content

Commit

Permalink
Merge pull request #1544 from sopel-irc/coretasks-malformed-mode
Browse files Browse the repository at this point in the history
coretasks: fix malformed MODE command in startup()
  • Loading branch information
dgw authored Apr 5, 2019
2 parents 8aad940 + 55a48b7 commit 20f2ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sopel/coretasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def startup(bot, trigger):
auth_after_register(bot)

modes = bot.config.core.modes
bot.write(('MODE ', '%s +%s' % (bot.nick, modes)))
bot.write(('MODE', '%s +%s' % (bot.nick, modes)))

bot.memory['retry_join'] = dict()

Expand Down

0 comments on commit 20f2ca9

Please sign in to comment.