Fix all violators of E231

This commit is contained in:
Alex Gaynor 2013-10-26 12:15:03 -07:00
parent f2d8027c9a
commit 9d740eb8b1
74 changed files with 628 additions and 629 deletions

View file

@ -31,7 +31,7 @@ class Author(models.Model):
class Meta:
db_table = 'my_author_table'
ordering = ('last_name','first_name')
ordering = ('last_name', 'first_name')
@python_2_unicode_compatible
class Article(models.Model):