benselme / flask-mako

Provides support for Mako Templates in Flask.
40 stars 30 forks source link

ImportError: No module named flaskext.babel #8

Closed rhyek closed 9 years ago

rhyek commented 10 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/