diff --git a/yunodiagnoser.py b/yunodiagnoser.py index 8f5f4ca..e883fcb 100644 --- a/yunodiagnoser.py +++ b/yunodiagnoser.py @@ -391,7 +391,12 @@ async def check_smtp(request): @app.route("/robots.txt") async def robots(request): - return raw("User-agent: *\nDisallow: /") + return raw( + """ + User-agent: * + Disallow: / + """ + ) @app.route("/")