From: philipp Date: Sun, 30 Jul 2017 21:25:59 +0000 (+0000) Subject: Fix: Wrong function was called at rodelbahn_update_regioncache. X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/commitdiff_plain/fb243ae7165b7a77c42ee4c304256ba4ebf0eb97 Fix: Wrong function was called at rodelbahn_update_regioncache. git-svn-id: http://www.winterrodeln.org/svn/wradmin/trunk@2691 7aebc617-e5e2-0310-91dc-80fb5f6d2477 --- diff --git a/wradmin/__init__.py b/wradmin/__init__.py index ca17b6f..1f7850b 100644 --- a/wradmin/__init__.py +++ b/wradmin/__init__.py @@ -58,7 +58,7 @@ def rodelbahn_update(): @app.route("/rodelbahn/update_regioncache") def rodelbahn_update_regioncache(): get_db() - return RodelbahnController().update() + return RodelbahnController().update_regioncache() @app.route("/bericht/list")