diff options
| author | klm | 1998-03-08 17:27:59 +0000 |
|---|---|---|
| committer | klm | 1998-03-08 17:27:59 +0000 |
| commit | fbd5ac4151b6a8251a33637a06cac493885ed072 (patch) | |
| tree | 5888f11ecae72cc000828888f1f3ae353bd7b0a5 | |
| parent | 78e423001878fe33fd5a452e6cd51e3a040b10ea (diff) | |
| download | mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.tar.gz mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.tar.zst mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.zip | |
| -rw-r--r-- | Mailman/htmlformat.py | 4 | ||||
| -rw-r--r-- | modules/htmlformat.py | 4 |
2 files changed, 4 insertions, 4 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: diff --git a/modules/htmlformat.py b/modules/htmlformat.py index 2a8b0d175..ce1abba06 100644 --- a/modules/htmlformat.py +++ b/modules/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: |
