diff options
| author | Carl Meyer <carl@oddbird.net> | 2017-10-25 08:57:46 -0700 |
|---|---|---|
| committer | Carl Meyer <carl@oddbird.net> | 2017-10-25 08:57:46 -0700 |
| commit | dd1e9d1cb7e9a232946c06aca1564d48d4d6f65e (patch) | |
| tree | 34c303d2340e252d1e3430e729fbf338ad437102 /src | |
| parent | 423980164b258b2ec77d8d9bfccb9bc00b220e31 (diff) | |
| download | flake8-dd1e9d1cb7e9a232946c06aca1564d48d4d6f65e.tar.gz | |
Use default comma-separated regex for local-plugin paths.
Diffstat (limited to 'src')
| -rw-r--r-- | src/flake8/options/config.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/flake8/options/config.py b/src/flake8/options/config.py index b5b42fb..ba9442a 100644 --- a/src/flake8/options/config.py +++ b/src/flake8/options/config.py @@ -350,8 +350,7 @@ def get_local_plugins(config_finder, cli_config=None, isolated=False): )) if config.has_option(section, 'paths'): raw_paths = utils.parse_comma_separated_list( - config.get(section, 'paths').strip(), - regexp=utils.LOCAL_PLUGIN_LIST_RE, + config.get(section, 'paths').strip() ) norm_paths = [] for base_dir in base_dirs: |
