
Prior to this commit, using a Unicode character in a configuration string would result in a `UnicodeDecodeError` being raised. Supporting Unicode characters is especially useful in user-facing configuration strings, such as `html_title`.
14 lines
312 B
INI
14 lines
312 B
INI
[carrotapp]
|
|
# Whether or not our carrots are going to be turned into cake.
|
|
carrotcake = true
|
|
num_carrots = 88
|
|
|
|
# A message encouraging our users to eat their carrots.
|
|
encouragement_phrase = "I'd love it if you eat your carrots!"
|
|
|
|
# Something extra!
|
|
blah_blah = "blæh!"
|
|
|
|
[celery]
|
|
EAT_CELERY_WITH_CARROTS = False
|