Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shaked8634 committed Apr 7, 2024
1 parent 36b9019 commit 7ffd2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hashcat_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
STATUS = f"--quiet --status --status-json --status-timer={UPDATE_INTERVAL} --outfile {OUT_FILE}"
HASH_TARGET = None # Can be hash string or hashes file

DISABLE_NTFY = True if os.environ.get("DISABLE_NTFY").lower() == "true" else False
DISABLE_NTFY = True if os.environ.get("DISABLE_NTFY", "").lower() == "true" else False

logging.basicConfig(level=logging.DEBUG, format="%(asctime)s | %(levelname)s | %(message)s")

Expand Down

0 comments on commit 7ffd2c2

Please sign in to comment.