ó
`¾Tc           @   s   d  Z  d „  Z e ƒ  [ d S(   s}  
    flask.ext
    ~~~~~~~~~

    Redirect imports for extensions.  This module basically makes it possible
    for us to transition from flaskext.foo to flask_foo without having to
    force all extensions to upgrade at the same time.

    When a user does ``from flask.ext.foo import bar`` it will attempt to
    import ``from flask_foo import bar`` first and when that fails it will
    try to import ``from flaskext.foo import bar``.

    We're switching from namespace packages because it was just too painful for
    everybody involved.

    :copyright: (c) 2011 by Armin Ronacher.
    :license: BSD, see LICENSE for more details.
c          C   s3   d d l  m }  |  d d g t ƒ } | j ƒ  d  S(   Ni   (   t   ExtensionImporters   flask_%ss   flaskext.%s(   t   exthookR    t   __name__t   install(   R    t   importer(    (    sX   /var/www/send.findwatt.com/datamanager/lib/python2.7/site-packages/flask/ext/__init__.pyt   setup   s    N(   t   __doc__R   (    (    (    sX   /var/www/send.findwatt.com/datamanager/lib/python2.7/site-packages/flask/ext/__init__.pyt   <module>   s   	