From 7c1cc5fb25929f2bdbce2c2a7c55cdb4374680c0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 27 Nov 2006 05:02:21 +0000 Subject: [PATCH] newforms: Small short-circuit optimization to BoundField.as_widget() git-svn-id: http://code.djangoproject.com/svn/django/trunk@4121 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/newforms/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/newforms/forms.py b/django/newforms/forms.py index e381bb906e..ae836ba779 100644 --- a/django/newforms/forms.py +++ b/django/newforms/forms.py @@ -176,7 +176,7 @@ class BoundField(object): def as_widget(self, widget, attrs=None): attrs = attrs or {} auto_id = self.auto_id - if not attrs.has_key('id') and not widget.attrs.has_key('id') and auto_id: + if auto_id and not attrs.has_key('id') and not widget.attrs.has_key('id'): attrs['id'] = auto_id return widget.render(self._name, self._form.data.get(self._name, None), attrs=attrs)