Minor Python 3 fix for Customize dialog

This commit is contained in:
Aldo Bleeker 2020-11-07 13:43:58 +01:00
parent 7f4e6698ef
commit a74f37c79e
1 changed files with 2 additions and 2 deletions

View File

@ -580,9 +580,9 @@ def cli_main():
elif len(args)==4:
infile, outpath, name, cc = args
print(bin2ascii.b2a_hex(getuser_key(name, cc)))
print(binascii.b2a_hex(getuser_key(name, cc)))
return decryptBook(infile, outpath, make_pmlz, bin2ascii.b2a_hex(getuser_key(name, cc)))
return decryptBook(infile, outpath, make_pmlz, getuser_key(name, cc))
if __name__ == "__main__":