mirror of
https://github.com/apprenticeharper/DeDRM_tools
synced 2024-11-16 07:47:18 +01:00
Minor Python 3 fix for Customize dialog
This commit is contained in:
parent
7f4e6698ef
commit
a74f37c79e
1 changed files with 2 additions and 2 deletions
|
@ -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__":
|
||||
|
|
Loading…
Reference in a new issue