# HG changeset patch # User Ludovic Chabant # Date 1482033292 28800 # Node ID 8f2d32f9009509b1a1fb254e10a525052e1e8971 # Parent 4d0f80b2ba7f191d2ecce9bf9ce1cac796c4aecf admin: Don't have the static folder for the app collide with the blueprint's. diff -r 4d0f80b2ba7f -r 8f2d32f90095 piecrust/admin/web.py --- a/piecrust/admin/web.py Sat Dec 17 19:49:52 2016 -0800 +++ b/piecrust/admin/web.py Sat Dec 17 19:54:52 2016 -0800 @@ -11,7 +11,7 @@ def create_foodtruck_app(extra_settings=None): - app = Flask(__name__.split('.')[0]) + app = Flask(__name__.split('.')[0], static_folder=None) app.config.from_object('piecrust.admin.settings') app.config.from_envvar('FOODTRUCK_SETTINGS', silent=True) if extra_settings: