removed debug statement and added newline for better output.

This commit is contained in:
NotoriousRebel 2020-07-04 22:08:12 -04:00
parent 5ee07edb3f
commit 56f818b0d0
2 changed files with 1 additions and 2 deletions

View file

@ -597,7 +597,7 @@ async def handler(lst):
# Verify path exists if not create it or if user does not create it skip screenshot
if path_exists:
await screen_shotter.verify_installation()
print(f'Screenshots can be found: {screen_shotter.output}{screen_shotter.slash}')
print(f'\nScreenshots can be found: {screen_shotter.output}{screen_shotter.slash}')
start = time.perf_counter()
print('Filtering domains for ones we can reach')
unique_resolved_domains = {url.split(':')[0]for url in full if ':' in url and 'www.' not in url}

View file

@ -25,7 +25,6 @@ def verify_path(self):
if answer.lower() == 'yes' or answer.lower() == 'y':
os.mkdir(self.output)
return True
print('path is a directory')
return True
except Exception as e:
print(f"An exception has occurred while attempting to verify output path's existence: {e}")