summaryrefslogtreecommitdiffstats
path: root/DEVELOP.rst
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2018-05-15 13:25:30 -0500
committerAmjith Ramanujam <amjith.r@gmail.com>2018-05-15 13:25:30 -0500
commit197c11f87be2999e046adcbbf12bb63ad85a89ab (patch)
treebfed81fb9d956ed6308e940f761689e71f4f24b0 /DEVELOP.rst
parentf8757c6f59b063786f7ab52479665cccb8ce21c7 (diff)
Fix the commands for fixing lint errors.
Diffstat (limited to 'DEVELOP.rst')
-rw-r--r--DEVELOP.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/DEVELOP.rst b/DEVELOP.rst
index 504ad3af..601c3f30 100644
--- a/DEVELOP.rst
+++ b/DEVELOP.rst
@@ -148,8 +148,8 @@ To see stdout/stderr, use the following command:
$ behave --no-capture
-PEP8 checks
------------
+PEP8 checks (lint)
+-----------------_
When you submit a PR, the changeset is checked for pep8 compliance using
`pep8radius <https://github.com/hayd/pep8radius>`_. If you see a build failing because
@@ -158,7 +158,7 @@ of these checks, install pep8radius and apply style fixes:
::
$ pip install pep8radius
- $ pep8radius --docformatter --diff # view a diff of proposed fixes
- $ pep8radius --docformatter --in-place # apply the fixes
+ $ pep8radius master --docformatter --diff # view a diff of proposed fixes
+ $ pep8radius master --docformatter --in-place # apply the fixes
Then commit and push the fixes.