Don't let autopep8 rewrite all the lines longer than 80 chars.
This commit is contained in:
parent
84df7ad428
commit
0cb3924a9e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue