From 9b2da1e2ccb6d55b8c81b24340157a3bfb107f3b Mon Sep 17 00:00:00 2001 From: zero Date: Fri, 19 Aug 2022 15:51:10 +0200 Subject: [PATCH] Someone forgot to remove prints in a file... --- src/ctfs/templatetags/get_chall.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ctfs/templatetags/get_chall.py b/src/ctfs/templatetags/get_chall.py index 9d5b335..d1be5be 100644 --- a/src/ctfs/templatetags/get_chall.py +++ b/src/ctfs/templatetags/get_chall.py @@ -4,9 +4,7 @@ register = template.Library() @register.simple_tag def get_chall_by_lang(chall, lang): - print(chall.slug) filepath = "ctfs/templates/challenges/"+ lang + "/" + chall.slug + ".html" - print(filepath) try: with open(filepath) as fp: return fp.read()