Fixed =! in line 314

This commit is contained in:
Lukas Baumann 2022-07-03 11:35:53 +02:00 committed by GitHub
parent 6014299520
commit 3abad16c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,7 +311,7 @@ while True:
hashmode = input("Hash mode: ") hashmode = input("Hash mode: ")
hashfile = input("Hash file: ") hashfile = input("Hash file: ")
start = input("Start at mask-id (empty if start at start): ") start = input("Start at mask-id (empty if start at start): ")
if start =! "": if start != "":
try: try:
rule = rule[int(start):] rule = rule[int(start):]
except: except: