From 8a32fa1212532afbb74ac7cfeb9471c31aca17df Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sun, 25 Aug 2024 13:03:30 +0200 Subject: [PATCH] Fix typo in HTMLParser error handling comment. --- genshi/input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genshi/input.py b/genshi/input.py index 4277057..c21990a 100644 --- a/genshi/input.py +++ b/genshi/input.py @@ -347,7 +347,7 @@ def _generate(): yield END, QName(tag), pos break except Exception as e: - # Python simple HTMLParser does not raise detailed + # Python's simple HTMLParser does not raise detailed # errors except in strict mode which was deprecated # in Python 3.3 and removed in Python 3.5 and which in # any case is not used is this code.