Fix Python syntax error: add a comma

Discovered by flake8 running in our GitHub Action
This commit is contained in:
Christian Clauss
2020-09-28 00:39:57 +02:00
committed by GitHub
parent 109261bdc0
commit 08bdacf476

View File

@@ -516,7 +516,7 @@ def decryptBook(infile, outpath, make_pmlz, user_key):
# remove temporary directory
shutil.rmtree(outdir, True)
print("Output is {0}".format(pmlzname))
else
else:
print("Output is in {0}".format(outdir))
print("done")
except ValueError as e: