diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-05-28 21:09:05 -0500 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-05-28 21:09:05 -0500 |
| commit | 2fcb222ff9895413610a5e6e087c582cf410abb9 (patch) | |
| tree | 1e806184c863bc8574224fc1b73bdd7485bb5844 | |
| parent | 89c9ec795ee2905638ab23947ae4360adce0d710 (diff) | |
| download | flake8-2fcb222ff9895413610a5e6e087c582cf410abb9.tar.gz | |
Fix default printing for --exclude help text
| -rw-r--r-- | flake8/main/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake8/main/cli.py b/flake8/main/cli.py index e9eedb7..455629f 100644 --- a/flake8/main/cli.py +++ b/flake8/main/cli.py @@ -75,7 +75,7 @@ def register_default_options(option_manager): comma_separated_list=True, parse_from_config=True, normalize_paths=True, help='Comma-separated list of files or directories to exclude.' - '(Default: %default)', + ' (Default: %default)', ) add_option( |
