Skip to content

Commit

Permalink
Merge pull request #938 from maxpowa/patch-5
Browse files Browse the repository at this point in the history
Fix crash during configure
  • Loading branch information
embolalia committed Nov 18, 2015
2 parents 1cad797 + 39eee8b commit b1c957e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sopel/config/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def configure(self, prompt, default, parent, section_name):
if self.parse == _parse_boolean:
prompt += ' (y/n)'
default = 'y' if default else 'n'
return super(ValidatedAttribute, self).configure(prompt, default)
return super(ValidatedAttribute, self).configure(prompt, default, parent, section_name)


class ListAttribute(BaseValidated):
Expand Down

0 comments on commit b1c957e

Please sign in to comment.