summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-06-18 10:33:37 -0400
committerGitHub <noreply@github.com>2016-06-18 10:33:37 -0400
commit26d0023cccd08473b0acc90e6f06bf3e93ebd847 (patch)
treef4486661b0e5dda5804945b3bc5e880384acd398 /django
parentf7a363ee1d2039824d95f35e54219e09c5af67b0 (diff)
Refs #15667 -- Fixed crash when indexing RadioFieldRenderer with ModelChoiceIterator.
Regression in 86573861a95e5a47dc7ff906443117d75b73dca1
Diffstat (limited to 'django')
-rw-r--r--django/forms/widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/widgets.py b/django/forms/widgets.py
index ab9794a1e7..604a6a401a 100644
--- a/django/forms/widgets.py
+++ b/django/forms/widgets.py
@@ -693,7 +693,7 @@ class ChoiceFieldRenderer(object):
self.choices = choices
def __getitem__(self, idx):
- choice = self.choices[idx] # Let the IndexError propagate
+ choice = list(self.choices)[idx] # Let the IndexError propagate
return self.choice_input_class(self.name, self.value, self.attrs.copy(), choice, idx)
def __str__(self):