From d7eca272c70c1cb494566823edd7f4335733815c Mon Sep 17 00:00:00 2001 From: Andrea Serrano Urea <0andreasu@gmail.com> Date: Tue, 27 Mar 2018 16:33:15 +0200 Subject: [PATCH] Remove f.close() since is not necesary --- ctfr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctfr.py b/ctfr.py index 91629dc..cb37408 100644 --- a/ctfr.py +++ b/ctfr.py @@ -43,7 +43,7 @@ def clear_url(target): def save_subdomains(subdomain,output_file): with open(output_file,"a") as f: f.write(subdomain + '\n') - f.close() + def main(): banner()