From c221dbb97cec1f4db178681f55373fc7565d8e03 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 21 Aug 2015 01:07:32 +0200 Subject: [PATCH] Fix javascript new name. --- accountant/frontend/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accountant/frontend/__init__.py b/accountant/frontend/__init__.py index ed552fa..dda5175 100644 --- a/accountant/frontend/__init__.py +++ b/accountant/frontend/__init__.py @@ -11,7 +11,7 @@ frontend = Blueprint( frontend_js = Bundle('frontend/js/app.js', 'frontend/js/accounts.js', - 'frontend/js/entries.js', 'frontend/js/scheduler.js') + 'frontend/js/operations.js', 'frontend/js/scheduler.js') frontend_css = Bundle('frontend/css/main.css')