Fix locale

This commit is contained in:
Guillaume Ayoub 2017-12-07 18:26:55 +01:00
parent fc423f28c3
commit 9269a6b262

View File

@ -7,7 +7,7 @@ import feedparser
from flask import Flask, abort, render_template
from jinja2 import TemplateNotFound
locale.setlocale(locale.LC_ALL, 'fr_FR.utf8')
locale.setlocale(locale.LC_ALL, 'fr_FR.UTF-8')
app = Flask(__name__)