From 636ffc319012f28f5fe2a88f0d7b805ca251d580 Mon Sep 17 00:00:00 2001 From: calgary34 <51468959+calgary34@users.noreply.github.com> Date: Fri, 21 Jan 2022 17:00:27 -0700 Subject: [PATCH] Update Bottle.py (#1271) --- b/Bottle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b/Bottle.py b/b/Bottle.py index a262ce1e..18539a5b 100644 --- a/b/Bottle.py +++ b/b/Bottle.py @@ -1,6 +1,6 @@ from bottle import route, run -@route('/hello') +@route('/') def hello(): return "Hello World"