Fix the 'ignore-path' config option

The option shouldn't be named 'ignore_path' but should be
named 'ignore-path' to match the docs and to match the CLI
argument.

Change-Id: If5346910b259a0c092eea5c9adde281c2f2ff347
This commit is contained in:
Joshua Harlow 2014-10-23 12:35:17 -07:00
parent 8b8f22329b
commit 666805dd8e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ def extract_config(args):
pass
try:
cfg['ignore_path'] = split_set_type(parser.get("doc8",
"ignore_path"))
"ignore-path"))
except (configparser.NoSectionError, configparser.NoOptionError):
pass
try: