From e74880ed22889bf935ff10b4c257b8d677adebda Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 14 Sep 2007 22:49:01 +0000 Subject: [PATCH] Negligible formatting change to [6211] git-svn-id: http://code.djangoproject.com/svn/django/trunk@6241 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management/validation.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django/core/management/validation.py b/django/core/management/validation.py index 6528a34f29..9e004d3d25 100644 --- a/django/core/management/validation.py +++ b/django/core/management/validation.py @@ -52,8 +52,7 @@ def get_validation_errors(outfile, app=None): if f.prepopulate_from is not None and type(f.prepopulate_from) not in (list, tuple): e.add(opts, '"%s": prepopulate_from should be a list or tuple.' % f.name) if f.choices: - if isinstance(f.choices, basestring) or \ - not is_iterable(f.choices): + if isinstance(f.choices, basestring) or not is_iterable(f.choices): e.add(opts, '"%s": "choices" should be iterable (e.g., a tuple or list).' % f.name) else: for c in f.choices: