added program name because wrapper was messing it up

This commit is contained in:
benton 2021-07-18 20:06:12 -05:00
parent 7485a8e823
commit 77c251357e

2
knock
View file

@ -5,7 +5,7 @@ import argparse
from pathlib import Path from pathlib import Path
import subprocess import subprocess
parser = argparse.ArgumentParser(description='Convert an ACSM file to a DRM-free ePub file') parser = argparse.ArgumentParser(prog="knock", description='Convert an ACSM file to a DRM-free ePub file')
parser.add_argument('acsm_file', metavar='file', type=str, help='the ACSM file to convert') parser.add_argument('acsm_file', metavar='file', type=str, help='the ACSM file to convert')
args = parser.parse_args() args = parser.parse_args()