From 9f26b00148070a190cfea7452f56eeca8bdc6d9f Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Sat, 19 Apr 2025 01:47:05 -0500 Subject: [PATCH] chg: Other formats for cover also work --- README.md | 2 +- cambridge_core_merge.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d651f39..b8364f7 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Available options: -z, --zipfile ZIPFILE The path of the zip file obtained from Cambridge Core. -n, --name NAME The path of the final PDF file. - -c, --cover COVER The path of the cover file. (Must be JPG.) + -c, --cover COVER The path of the cover file. (Ideally JPG.) ``` [Link to the base repo.](https://git.sayantansantra.com/SinTan1729/cambridge-core-merge) diff --git a/cambridge_core_merge.py b/cambridge_core_merge.py index a7dac5d..a5c5267 100755 --- a/cambridge_core_merge.py +++ b/cambridge_core_merge.py @@ -24,7 +24,7 @@ def main(): help="The path of the zip file obtained from Cambridge Core.", ) parser.add_argument("-n", "--name", required=True, help="The path of the final PDF file.") - parser.add_argument("-c", "--cover", help="The path of the cover file. (Must be JPG.)") + parser.add_argument("-c", "--cover", help="The path of the cover file. (Ideally JPG.)") args = parser.parse_args() zip = ZipFile(args.zipfile, "r")