From fe01f7fe36663a8c830418505560ad6a1aec47fd Mon Sep 17 00:00:00 2001 From: "Fredrick W. Warren" Date: Mon, 30 May 2022 20:55:05 -0700 Subject: [PATCH] fix typo in filename --- hcatitles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcatitles.py b/hcatitles.py index 1c1550b..2d25e6f 100644 --- a/hcatitles.py +++ b/hcatitles.py @@ -88,7 +88,7 @@ def build_layout(title, subtitle, thumbnail): def main(): title = 'Pastor Shane Wallis' subtitle = 'Bible Stduy Wednesday June 1st, 2022' - image_path = resource_path('rblank_title.png') + image_path = resource_path('blank_title.png') original = Image.open(image_path) image = update_image(original, title, subtitle) thumbnail = update_thumbnail(image)