diff options
| author | bwarsaw | 2007-03-21 21:31:59 +0000 |
|---|---|---|
| committer | bwarsaw | 2007-03-21 21:31:59 +0000 |
| commit | daeb5dbf03fde77265e42392cae0913765423f94 (patch) | |
| tree | f696e3eaaaca084c978b7b21df53e00738629ac3 /Mailman/enum.py | |
| parent | cdefb7ba2792083a520f8dc40993a0f946ad3434 (diff) | |
| download | mailman-daeb5dbf03fde77265e42392cae0913765423f94.tar.gz mailman-daeb5dbf03fde77265e42392cae0913765423f94.tar.zst mailman-daeb5dbf03fde77265e42392cae0913765423f94.zip | |
Diffstat (limited to 'Mailman/enum.py')
| -rw-r--r-- | Mailman/enum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/enum.py b/Mailman/enum.py index a42799f37..893e988ba 100644 --- a/Mailman/enum.py +++ b/Mailman/enum.py @@ -76,7 +76,7 @@ class EnumMetaclass(type): def __iter__(cls): for i in sorted(cls._enums): - yield cls._enums[i] + yield getattr(cls, cls._enums[i]) def __getitem__(cls, i): # i can be an integer or a string |
