Closed rhyek closed 9 years ago
Was getting this error while trying to integrate Babel into my application.
If you change line 35 in flask_mako.py from:
_BABEL_IMPORTS = 'from flaskext.babel import gettext as _, ngettext, ' \ 'pgettext, npgettext'
to:
_BABEL_IMPORTS = 'from flask.ext.babel import gettext as _, ngettext, ' \ 'pgettext, npgettext'
it works. You'd have to check what Flask version you're running and change the import based on that.
More info: http://flask.pocoo.org/docs/extensions/
Was getting this error while trying to integrate Babel into my application.
If you change line 35 in flask_mako.py from:
to:
it works. You'd have to check what Flask version you're running and change the import based on that.
More info: http://flask.pocoo.org/docs/extensions/