Damn typo!

This commit is contained in:
Mo Langning
2023-11-25 00:41:40 +08:00
committed by GitHub
parent c9d4fe0853
commit 86bebe95c4
+2 -2
View File
@@ -26,8 +26,8 @@ for i in files:
exit(2) exit(2)
print("[+] %s passed new line check!"%(i)) print("[+] %s passed new line check!"%(i))
for j in contents.split('\n'): for line in contents.split('\n'):
if len(i)==0: if len(line)==0:
print("[!] %s has an empty entry!"%(i)) print("[!] %s has an empty entry!"%(i))
exit(2) exit(2)
print("[+] %s passed empty line check!"%(i)) print("[+] %s passed empty line check!"%(i))