Remove debug message

This commit is contained in:
Filip Krumpe 2022-01-04 16:51:10 +01:00
parent a6912a77d1
commit 85bb2ec9f6

1
app.py
View File

@ -4,5 +4,4 @@ app = Flask(__name__)
@app.route("/<path:path>") @app.route("/<path:path>")
def svelte_client(path): def svelte_client(path):
print(f"Trying to return {path}")
return send_from_directory("webapp/public/", path) return send_from_directory("webapp/public/", path)