Don't let autopep8 rewrite all the lines longer than 80 chars.

This commit is contained in:
Ben Darnell 2012-08-27 17:30:06 -04:00
parent 84df7ad428
commit 0cb3924a9e
1 changed files with 2 additions and 1 deletions

View File

@ -5,4 +5,5 @@
# W602 is "deprecated form of raising exception", but the fix is incorrect
# (and I'm not sure if the three-argument form of raise is really deprecated
# in the first place)
autopep8 --ignore=W602 -i tornado/*.py tornado/platform/*.py tornado/test/*.py
# E501 is "line longer than 80 chars" but the automated fix is ugly.
autopep8 --ignore=W602,E501 -i tornado/*.py tornado/platform/*.py tornado/test/*.py