From 98d5de5c44a3aca159a0ed7acae51a18fc60a48c Mon Sep 17 00:00:00 2001 From: David Todd Date: Sat, 18 Jan 2020 22:50:06 -0600 Subject: [PATCH] fix index string --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 711c286..e902330 100644 --- a/server.py +++ b/server.py @@ -13,7 +13,7 @@ _api = API() @route('/') def index(): - return template("This is the index") + return "This is the index" # I haven't figured out how to get these routes inside the API yet... @route('/save//<uri:path>')