diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-26 12:15:03 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-26 12:15:03 -0700 |
| commit | 9d740eb8b15de31f1c5520659df683d90342bb44 (patch) | |
| tree | 62b6ff49e5a60467828f9b04d46b6ebeac86c333 /tests/model_forms | |
| parent | f2d8027c9aea93750fc4213d9e733c8575e89502 (diff) | |
Fix all violators of E231
Diffstat (limited to 'tests/model_forms')
| -rw-r--r-- | tests/model_forms/tests.py | 2 |
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): |
