summaryrefslogtreecommitdiff
path: root/pep8.py
diff options
context:
space:
mode:
authorDavid Thompson <david.thompson@glassesdirect.co.uk>2010-06-21 10:39:04 +0100
committerDavid Thompson <david.thompson@glassesdirect.co.uk>2010-06-21 10:39:04 +0100
commit233ef4dd417d63492e3e3a15eadf0e5415563e61 (patch)
tree520a08533c122f0d385585e72e61eb9dfaa49312 /pep8.py
parent9721e88eeed0e863d57f3979f09f6157045fdff9 (diff)
downloadpep8-233ef4dd417d63492e3e3a15eadf0e5415563e61.tar.gz
Fix an indentation issue.
This was causing pep8 to return the new W293 warning when run on itself.
Diffstat (limited to 'pep8.py')
-rwxr-xr-xpep8.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pep8.py b/pep8.py
index 64db20b..974c2ca 100755
--- a/pep8.py
+++ b/pep8.py
@@ -172,7 +172,7 @@ def trailing_whitespace(physical_line):
matching a blank line to its indentation level avoids mistakenly
terminating a multi-line statement (e.g. class declaration) when
pasting code into the standard Python interpreter.
-
+
[1] http://docs.python.org/reference/lexical_analysis.html#blank-lines
The warning returned varies on whether the line itself is blank, for easier