diff options
Diffstat (limited to 'src/mailman/styles/base.py')
| -rw-r--r-- | src/mailman/styles/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/styles/base.py b/src/mailman/styles/base.py index d83b2e2a5..4f051c13c 100644 --- a/src/mailman/styles/base.py +++ b/src/mailman/styles/base.py @@ -67,9 +67,9 @@ class Identity: # Set this to Never if the list's preferred language uses us-ascii, # otherwise set it to As Needed. if mlist.preferred_language.charset == 'us-ascii': - mlist.encode_ascii_prefixes = 0 + mlist.encode_ascii_prefixes = False else: - mlist.encode_ascii_prefixes = 2 + mlist.encode_ascii_prefixes = True |
