aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/views.py')
-rw-r--r--src/web/views/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/views.py b/src/web/views/views.py
index b23a41a1..a7c842d7 100644
--- a/src/web/views/views.py
+++ b/src/web/views/views.py
@@ -1,7 +1,7 @@
import logging
from flask import (request, render_template, flash,
url_for, redirect, current_app)
-from flask.ext.babel import gettext
+from flask_babel import gettext
from conf import API_ROOT
from web.lib.view_utils import etag_match
bgstack15