summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2014-12-15 20:37:10 -0800
committerIan Lee <IanLee1521@gmail.com>2014-12-15 20:37:10 -0800
commit1fcf60085b66e6df41e20b572cdcb2bda5639e93 (patch)
tree379b0d8d5186d462d0fa6b6144b811ed16cac360
parent9ab1820fc494bcb6ebd4ba79eb694ea882fdb7bb (diff)
downloadpep8-1fcf60085b66e6df41e20b572cdcb2bda5639e93.tar.gz
Fix silly typo in previous commit.
-rwxr-xr-xpep8.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pep8.py b/pep8.py
index e6402fa..652b2d0 100755
--- a/pep8.py
+++ b/pep8.py
@@ -595,7 +595,7 @@ def whitespace_before_parameters(logical_line, tokens):
E211: dict ['key'] = list[index]
E211: dict['key'] = list [index]
"""
- explicit_error = ('print')
+ explicit_error = ('print',)
prev_type, prev_text, __, prev_end, __ = tokens[0]
for index in range(1, len(tokens)):
token_type, text, start, end, __ = tokens[index]