Skip to content

Commit

Permalink
Fixed incorrect if statement logic when confirming cli args
Browse files Browse the repository at this point in the history
  • Loading branch information
BreathXV committed May 27, 2024
1 parent c69c701 commit c3ca89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whitelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def main():
)
)

if not confirm_args.lower() == "y" or "yes":
if confirm_args.lower() != "y" or "yes":
print("Please restart the application to try again.")
return

Expand Down

0 comments on commit c3ca89c

Please sign in to comment.