From ae48d77ef8e14dae76fddcd5a677b897c7c7c4ae Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 23 Oct 2013 06:09:29 -0400 Subject: Fixed E225 pep8 warnings. --- tests/distinct_on_fields/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/distinct_on_fields') diff --git a/tests/distinct_on_fields/tests.py b/tests/distinct_on_fields/tests.py index cb88f60321..505a0470bf 100644 --- a/tests/distinct_on_fields/tests.py +++ b/tests/distinct_on_fields/tests.py @@ -57,8 +57,8 @@ class DistinctOnTests(TestCase): # Does combining querysets work? ( (Celebrity.objects.filter(fan__in=[self.fan1, self.fan2]). - distinct('name').order_by('name') - |Celebrity.objects.filter(fan__in=[self.fan3]). + distinct('name').order_by('name') | + Celebrity.objects.filter(fan__in=[self.fan3]). distinct('name').order_by('name')), ['', ''], ), -- cgit v1.3