Skip to content

Commit

Permalink
Merge pull request #1022 from gparent/hostblocks
Browse files Browse the repository at this point in the history
Fix apparent typo in host_blocks initialization
  • Loading branch information
Elad Alfassa committed Feb 9, 2016
2 parents 7688657 + 08ca812 commit b8966de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sopel/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def __init__(self, config, daemon=False):
# Default to empty
if not self.config.core.nick_blocks:
self.config.core.nick_blocks = []
if not self.config.core.nick_blocks:
if not self.config.core.host_blocks:
self.config.core.host_blocks = []
self.setup()

Expand Down

0 comments on commit b8966de

Please sign in to comment.