diff options
| author | Jason Myers <jason@jasonamyers.com> | 2013-11-02 16:34:05 -0500 |
|---|---|---|
| committer | Jason Myers <jason@jasonamyers.com> | 2013-11-02 23:48:47 -0500 |
| commit | c3791463a5a9674f8e0148fbab57eae23c138896 (patch) | |
| tree | 6606acdb74132a344a49e910dec5d0356389a569 /tests/ordering | |
| parent | 2a03a9a9a1c4517be75e72899e545b0bc9dd0688 (diff) | |
Fixing E302 Errors
Signed-off-by: Jason Myers <jason@jasonamyers.com>
Diffstat (limited to 'tests/ordering')
| -rw-r--r-- | tests/ordering/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/ordering/models.py b/tests/ordering/models.py index e516c2f5a8..415b28bb41 100644 --- a/tests/ordering/models.py +++ b/tests/ordering/models.py @@ -28,6 +28,7 @@ class Article(models.Model): def __str__(self): return self.headline + @python_2_unicode_compatible class ArticlePKOrdering(models.Model): headline = models.CharField(max_length=100) |
