diff options
author | Ilambharathi Kanniah <ilambharathik@gmail.com> | 2014-07-31 11:13:19 -0700 |
---|---|---|
committer | Ilambharathi Kanniah <ilambharathik@gmail.com> | 2014-07-31 11:13:19 -0700 |
commit | def3750145c10e58d3f3723344926b45581ea5fc (patch) | |
tree | 6bc39d4175696d902ec0c32332aa43906a52e2f1 /docs/intro.rst | |
parent | 07d3529ba64c4df3820db86ca3a90d253a9e8eec (diff) | |
download | pep8-def3750145c10e58d3f3723344926b45581ea5fc.tar.gz |
Corrected some formatting
Diffstat (limited to 'docs/intro.rst')
-rw-r--r-- | docs/intro.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/intro.rst b/docs/intro.rst index 8a8d404..f6498bf 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -111,7 +111,8 @@ Or you can display how often each error was found:: 612 W601 .has_key() is deprecated, use 'in' 1188 W602 deprecated form of raising exception -You can also make pep8.py show the error text in different formats by using --format having options default/pylint/custom +You can also make pep8.py show the error text in different formats by using --format having options default/pylint/custom:: + $ pep8 testsuite/E40.py --format=default testsuite/E40.py:2:10: E401 multiple imports on one line @@ -120,7 +121,7 @@ You can also make pep8.py show the error text in different formats by using --fo $ pep8 testsuite/E40.py --format='%(path)s|%(row)d|%(col)d| %(code)s %(text)s' testsuite/E40.py|2|10| E401 multiple imports on one line - + Quick help is available on the command line:: $ pep8 -h |