Changes between Version 1 and Version 2 of Ticket #21268


Ignore:
Timestamp:
Oct 14, 2013, 1:18:33 PM (11 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21268 – Description

    v1 v2  
    1 To find errors: `flake8 --exclude=./django/utils/dictconfig.py,./django/contrib/comments/*,./django/utils/unittest.py,./tests/comment_tests/*,./django/test/_doctest.py --select=E303`
     1To find errors, ensure you have an up-to-date master with the flake8 config in setup.cfg, then remove E303 from the ignore list there. You can then run `flake8` from the directory with setup.cfg in it to list all errors.
    22
    3 Attaching a patch to get you started.
     3Attaching an example patch to get you started.
    44
    5 Apply it:
     5Apply it, if you'd like:
    66
    77`patch -p1 -i E303.diff`
Back to Top