From 626e30c2c606d75b9540b18d060ec1d38743bb5e Mon Sep 17 00:00:00 2001 From: ralphwetzel Date: Wed, 30 Oct 2019 21:50:13 +0100 Subject: [PATCH] fixed an issue due to lazy refactoring. --- theonionbox/stamp.py | 2 +- theonionbox/tob/apps/dashboard.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/theonionbox/stamp.py b/theonionbox/stamp.py index fd78037..86aca13 100644 --- a/theonionbox/stamp.py +++ b/theonionbox/stamp.py @@ -1,4 +1,4 @@ __title__ = 'The Onion Box' __description__ = 'Dashboard to monitor Tor node operations.' __version__ = '19.2b3' -__stamp__ = '20191030|213008' \ No newline at end of file +__stamp__ = '20191030|214320' \ No newline at end of file diff --git a/theonionbox/tob/apps/dashboard.py b/theonionbox/tob/apps/dashboard.py index 83300b5..fc848bf 100644 --- a/theonionbox/tob/apps/dashboard.py +++ b/theonionbox/tob/apps/dashboard.py @@ -261,7 +261,7 @@ def create_login_page(self, session: Session, node: Node, proceed_to_page: str): session['scripts'].append('md5.js') # deliver the login page - index = template("pages/index.html", **params) + return template("pages/index.html", **params) def get_restart(self, session_id):