diff --git a/sitebuilder.py b/sitebuilder.py index b8a7d1b..1c6d6b3 100755 --- a/sitebuilder.py +++ b/sitebuilder.py @@ -84,7 +84,7 @@ if __name__ == "__main__": @app.route("/media/") @app.route("/src/") @app.route("/favicon.ico") - def static_file(path): + def static_file(path=None): return app.send_static_file(request.path[1:]) app.run()