mirror of
https://github.com/noDRM/DeDRM_tools
synced 2024-12-27 21:59:11 +01:00
Fix Python syntax error: add a comma
Discovered by flake8 running in our GitHub Action
This commit is contained in:
parent
109261bdc0
commit
08bdacf476
1 changed files with 1 additions and 1 deletions
|
@ -516,7 +516,7 @@ def decryptBook(infile, outpath, make_pmlz, user_key):
|
||||||
# remove temporary directory
|
# remove temporary directory
|
||||||
shutil.rmtree(outdir, True)
|
shutil.rmtree(outdir, True)
|
||||||
print("Output is {0}".format(pmlzname))
|
print("Output is {0}".format(pmlzname))
|
||||||
else
|
else:
|
||||||
print("Output is in {0}".format(outdir))
|
print("Output is in {0}".format(outdir))
|
||||||
print("done")
|
print("done")
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
|
|
Loading…
Reference in a new issue