summaryrefslogtreecommitdiff
path: root/Mailman/htmlformat.py
diff options
context:
space:
mode:
authorklm1998-03-08 17:27:59 +0000
committerklm1998-03-08 17:27:59 +0000
commitfbd5ac4151b6a8251a33637a06cac493885ed072 (patch)
tree5888f11ecae72cc000828888f1f3ae353bd7b0a5 /Mailman/htmlformat.py
parent78e423001878fe33fd5a452e6cd51e3a040b10ea (diff)
downloadmailman-fbd5ac4151b6a8251a33637a06cac493885ed072.tar.gz
mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.tar.zst
mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.zip
Diffstat (limited to 'Mailman/htmlformat.py')
-rw-r--r--Mailman/htmlformat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/htmlformat.py b/Mailman/htmlformat.py
index 2a8b0d175..ce1abba06 100644
--- a/Mailman/htmlformat.py
+++ b/Mailman/htmlformat.py
@@ -388,11 +388,11 @@ class RadioButtonArray:
l = len(self.button_names)
for i in range(l):
if self.checked == i:
- items.append(self.button_names[i])
items.append(RadioButton(self.name, i, 1))
- else:
items.append(self.button_names[i])
+ else:
items.append(RadioButton(self.name, i))
+ items.append(self.button_names[i])
if self.horizontal:
t.AddRow(items)
else: