summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-02-22 10:36:51 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-02-22 10:36:51 +0100
commitb13ec0acef4f3eb905ad1901469710cbfd87b6ab (patch)
tree3c7bfd52fd72d1b8598359c57d2fc6ae869d1cfa /README.rst
parent47bf8887816bbef6ac04ff4b95829b8c0bfaac64 (diff)
downloadflake8-b13ec0acef4f3eb905ad1901469710cbfd87b6ab.tar.gz
Typo in the sample output
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 21267f4..206bc50 100644
--- a/README.rst
+++ b/README.rst
@@ -31,8 +31,8 @@ To run flake8 just invoke it against any directory or Python module::
$ flake8 coolproject
coolproject/mod.py:97:1: F401 'shutil' imported but unused
coolproject/mod.py:625:17: E225 missing whitespace around operato
- coolproject/mod.py:729: F811 redefinition of function 'readlines' from line 723
- coolproject/mod.py:1028: F841 local variable 'errors' is assigned to but never used
+ coolproject/mod.py:729:1: F811 redefinition of function 'readlines' from line 723
+ coolproject/mod.py:1028:1: F841 local variable 'errors' is assigned to but never used
The outputs of PyFlakes *and* pep8 (and the optional plugins) are merged
and returned.