Skip to content

Commit

Permalink
Fix default indent_list_items in config parsing
Browse files Browse the repository at this point in the history
Fixes #81
  • Loading branch information
willthames committed Aug 30, 2019
1 parent 12c6bec commit e1002f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansiblereview/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def __init__(self, values):


def read_config(config_file):
config = configparser.RawConfigParser(dict(standards=None, lint=None, indent_list_items=False))
config = configparser.RawConfigParser(dict(standards=None, lint=None, indent_list_items="False"))
config.read(config_file)

if config.has_section('rules'):
Expand Down

0 comments on commit e1002f4

Please sign in to comment.