This commit is contained in:
Sean C 2023-04-17 00:40:31 -04:00
parent a79b503f91
commit 2c7e8b6350

View File

@ -26,7 +26,7 @@ def direcCrawler():
directories.append(f'{item}/{nwitem}')
elif os.path.isfile(item):
if os.path.islink(): print(f'FoundSymLink: {item}')
if os.path.islink(item): print(f'FoundSymLink: {item}')
files.append(item)
directories.remove(item) # Its been crawled
return True