mirror of
https://github.com/danielmiessler/SecLists
synced 2026-02-27 01:47:10 +01:00
Damn typo!
This commit is contained in:
parent
c9d4fe0853
commit
86bebe95c4
1 changed files with 3 additions and 3 deletions
|
|
@ -26,11 +26,11 @@ for i in files:
|
|||
exit(2)
|
||||
print("[+] %s passed new line check!"%(i))
|
||||
|
||||
for j in contents.split('\n'):
|
||||
if len(i)==0:
|
||||
for line in contents.split('\n'):
|
||||
if len(line)==0:
|
||||
print("[!] %s has an empty entry!"%(i))
|
||||
exit(2)
|
||||
print("[+] %s passed empty line check!"%(i))
|
||||
|
||||
print("[+] All files passed checks")
|
||||
# exit(0)
|
||||
# exit(0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue