From d4415c34a4bc47d6e6019ff1418aa1ae05272e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krystian=20Rosi=C5=84ski?= Date: Sun, 17 Jul 2022 13:54:19 +0200 Subject: [PATCH] Typo in comment --- docxtpl/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docxtpl/__main__.py b/docxtpl/__main__.py index 3ce9bbf..17b3b05 100644 --- a/docxtpl/__main__.py +++ b/docxtpl/__main__.py @@ -131,7 +131,7 @@ def save_file(doc, parsed_args): def main(): parser = make_arg_parser() - # Everything is in a try-except block that cacthes a RuntimeError that is + # Everything is in a try-except block that catches a RuntimeError that is # raised if any of the individual functions called cause an error # themselves, terminating the main function. parsed_args = get_args(parser)