fix index string

This commit is contained in:
David Todd 2020-01-18 22:50:06 -06:00
parent c2727946cb
commit 98d5de5c44
1 changed files with 1 additions and 1 deletions

View File

@ -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/<title>/<uri:path>')