summaryrefslogtreecommitdiff
path: root/tests/model_forms
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-26 12:15:03 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-26 12:15:03 -0700
commit9d740eb8b15de31f1c5520659df683d90342bb44 (patch)
tree62b6ff49e5a60467828f9b04d46b6ebeac86c333 /tests/model_forms
parentf2d8027c9aea93750fc4213d9e733c8575e89502 (diff)
Fix all violators of E231
Diffstat (limited to 'tests/model_forms')
-rw-r--r--tests/model_forms/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py
index 0ca96166bc..0db4ad7567 100644
--- a/tests/model_forms/tests.py
+++ b/tests/model_forms/tests.py
@@ -115,7 +115,7 @@ class ArticleForm(forms.ModelForm):
class PartialArticleForm(forms.ModelForm):
class Meta:
model = Article
- fields = ('headline','pub_date')
+ fields = ('headline', 'pub_date')
class RoykoForm(forms.ModelForm):