Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions atomizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import concurrent.futures
import sys
import csv
import os
from functools import partial
from pathlib import Path
from docopt import docopt
Expand Down Expand Up @@ -205,6 +206,8 @@ def remove_handlers(loop):

elif args['<userfile>']:
with open(args['<userfile>']) as userfile:
if os.path.isfile(args['<password>']):
logging.info(print_info(f"This looks like a password file, but we're using it as the literal password, add --interval if you want it to be read as a file."))
loop.run_until_complete(
atomizer.atomize(
userfile=userfile,
Expand Down