Merge remote-tracking branch 'origin/stable'

This commit is contained in:
David Lord 2026-02-06 13:22:54 -08:00
commit d3b78fd18a
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
2 changed files with 2 additions and 8 deletions

View file

@ -56,10 +56,7 @@ directory should be treated as a package.
app.config.from_mapping(test_config)
# ensure the instance folder exists
try:
os.makedirs(app.instance_path)
except OSError:
pass
os.makedirs(app.instance_path, exist_ok=True)
# a simple page that says hello
@app.route('/hello')