From 22b8583dbe35360c08fad1703b83fe9f9cbf1e06 Mon Sep 17 00:00:00 2001 From: rav4s Date: Sun, 28 Mar 2021 12:17:08 -0500 Subject: [PATCH] cant overwrite existing func lol --- Web_Dashboard/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web_Dashboard/app.py b/Web_Dashboard/app.py index 2a6d829..6dc5291 100644 --- a/Web_Dashboard/app.py +++ b/Web_Dashboard/app.py @@ -444,7 +444,7 @@ def ten(): return render_template('ten.html', smartphone=ten_smartphone, tablet=ten_tablet, laptop=ten_laptop) @app.route('/rickroll') -def index(): +def rickroll(): return render_template('rickroll.html') if __name__ == '__main__':