diff options
| author | Collin Anderson <cmawebsite@gmail.com> | 2015-02-05 13:25:34 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-06 09:35:08 -0500 |
| commit | fc8e1e0c107fe5fc8c82f01dfabfa9b7a196a67c (patch) | |
| tree | 2479a9a9fdc399e9ec6d640d9eaca191e66e6c6c /tests/model_forms | |
| parent | 232a1d297c8431a77f3dbb9bcf453d17eb5e3315 (diff) | |
[1.8.x] Fixed E265 comment style
Backport of db77915c9fd35a203edd8206f702ee4082f04d4a from master
Diffstat (limited to 'tests/model_forms')
| -rw-r--r-- | tests/model_forms/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 4bb7c47eb2..c7acf948a7 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -955,10 +955,10 @@ class ModelToDictTests(TestCase): with self.assertNumQueries(0): d = model_to_dict(art) - #Ensure all many-to-many categories appear in model_to_dict + # Ensure all many-to-many categories appear in model_to_dict for c in categories: self.assertIn(c.pk, d['categories']) - #Ensure many-to-many relation appears as a list + # Ensure many-to-many relation appears as a list self.assertIsInstance(d['categories'], list) |
