From 528bfa79307d9b497202a022610ebeb9308c7d5f Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 21 Oct 2020 16:39:56 -0700 Subject: remove spurious debugging print() in robots.txt handler --- fatcat_scholar/web.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fatcat_scholar/web.py b/fatcat_scholar/web.py index c50e02c..48174ff 100644 --- a/fatcat_scholar/web.py +++ b/fatcat_scholar/web.py @@ -246,7 +246,6 @@ ROBOTS_DISALLOW = open("fatcat_scholar/static/robots.disallow.txt", "r").read() @app.get("/robots.txt", include_in_schema=False) async def robots_txt(response_class: Any = PlainTextResponse) -> Any: - print(ROBOTS_ALLOW) if settings.SCHOLAR_ENV == "prod": return PlainTextResponse(ROBOTS_ALLOW) else: -- cgit v1.2.3