Skip to content

Commit

Permalink
Fix malformed setting DJANGO_MAILBOX_DEFAULT_CHARSET #267
Browse files Browse the repository at this point in the history
Fix malformed setting DJANGO_MAILBOX_DEFAULT_CHARSET
  • Loading branch information
pfouque authored Dec 17, 2023
2 parents 70d3594 + 8f42cea commit 3c6f383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_mailbox/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get_settings():
),
'default_charset': getattr(
settings,
'DJANGO_MAILBOX_default_charset',
'DJANGO_MAILBOX_DEFAULT_CHARSET',
'iso8859-1',
)
}
Expand Down

0 comments on commit 3c6f383

Please sign in to comment.