From 034ab730cda1791f5e6ece06007176dc02e87db6 Mon Sep 17 00:00:00 2001 From: Scoder12 <34356756+Scoder12@users.noreply.github.com> Date: Tue, 28 Jul 2020 16:23:01 -0700 Subject: [PATCH] Use __name__ instead of constant in app constructor --- examples/maqpy/manual_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/maqpy/manual_auth.py b/examples/maqpy/manual_auth.py index 0721672..5ad891f 100644 --- a/examples/maqpy/manual_auth.py +++ b/examples/maqpy/manual_auth.py @@ -1,7 +1,7 @@ """A basic example of repl auth.""" from replit import maqpy -app = maqpy.App("app") +app = maqpy.App(__name__) @app.route("/")