summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2018-10-20 12:10:23 +0000
committerIan Stapleton Cordasco <graffatcolmingov@gmail.com>2018-10-20 12:10:23 +0000
commita2b7a7e4c590d73acc77a17ff8b0450e3b9b81d8 (patch)
tree34c689d71061a1d2b7e794230993963cd99f4cbd
parente2ad8aa186c85b58bb505aaa297201042583d0eb (diff)
parent21531962bfb0dc9a915d93a7ee87748f97551a75 (diff)
downloadflake8-a2b7a7e4c590d73acc77a17ff8b0450e3b9b81d8.tar.gz
Merge branch 'fix-doc-for-isolated' into 'master'
Fix docs for --isolated flag See merge request pycqa/flake8!247
-rw-r--r--docs/source/manpage.rst2
-rw-r--r--docs/source/user/invocation.rst2
-rw-r--r--src/flake8/main/options.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/source/manpage.rst b/docs/source/manpage.rst
index 8a58cdd..9c002b9 100644
--- a/docs/source/manpage.rst
+++ b/docs/source/manpage.rst
@@ -88,7 +88,7 @@ All options available as of Flake8 3.1.0::
--config=CONFIG Path to the config file that will be the authoritative
config source. This will cause Flake8 to ignore all
other configuration files.
- --isolated Ignore all found configuration files.
+ --isolated Ignore all configuration files.
--benchmark Print benchmark information about this run of Flake8
--bug-report Print information necessary when preparing a bug
report
diff --git a/docs/source/user/invocation.rst b/docs/source/user/invocation.rst
index c469f37..099b72a 100644
--- a/docs/source/user/invocation.rst
+++ b/docs/source/user/invocation.rst
@@ -138,7 +138,7 @@ And you should see something like:
--config=CONFIG Path to the config file that will be the authoritative
config source. This will cause Flake8 to ignore all
other configuration files.
- --isolated Ignore all found configuration files.
+ --isolated Ignore all configuration files.
--builtins=BUILTINS define more built-ins, comma separated
--doctests check syntax of the doctests
--include-in-doctest=INCLUDE_IN_DOCTEST
diff --git a/src/flake8/main/options.py b/src/flake8/main/options.py
index c3ebb80..b13a4f3 100644
--- a/src/flake8/main/options.py
+++ b/src/flake8/main/options.py
@@ -207,7 +207,7 @@ def register_default_options(option_manager):
add_option(
'--isolated', default=False, action='store_true',
- help='Ignore all found configuration files.',
+ help='Ignore all configuration files.',
)
# Benchmarking