summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2012-06-23 19:43:24 +0200
committerDomen Kožar <domen@dev.si>2012-06-23 19:43:24 +0200
commita10ee297e2d6d143f5e73df62f17cf73c1c85c90 (patch)
treeec4eb46a0c2eaede08f7d162caaf810da36752af
parent7131ddaaccca4de7418c52bbd2c9908c54d651bf (diff)
downloadpep8-a10ee297e2d6d143f5e73df62f17cf73c1c85c90.tar.gz
Clarify .pep can be located in any parent folder
-rwxr-xr-xpep8.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pep8.py b/pep8.py
index 8f2316f..36e0351 100755
--- a/pep8.py
+++ b/pep8.py
@@ -1845,7 +1845,9 @@ def process_options(arglist=None, parse_argv=False, config_file=None):
group.add_option('--benchmark', action='store_true',
help="measure processing speed")
group = parser.add_option_group("Configuration", description=(
- "The configuration options are read from the [pep8] section. "
+ "The configuration options are read from the [pep8] section written "
+ "in .ini style config file. Config can be located in any parent "
+ "folder of file being processed. "
"Allowed options are: %s." % ', '.join(parser.config_options)))
group.add_option('--config', metavar='path', default=config_file,
help="config file location (default: %default)")