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()