From d32d2d18f1548b2f8240a71e9537c88656d8f91a Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Tue, 21 Oct 2025 00:39:55 +0200 Subject: [PATCH] In testing, ignore empty lines. --- src/ircplom/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircplom/testing.py b/src/ircplom/testing.py index eab7064..36e3d7a 100644 --- a/src/ircplom/testing.py +++ b/src/ircplom/testing.py @@ -256,7 +256,7 @@ class _Playbook: ) for insert_t in inserts] self._lines_t = [line_t for line_t in self._lines_t - if line_t[1] + if line_t[1].rstrip() and not line_t[1].startswith(_MARK_COMMENT)] expand_parsed(_MARK_LOGSRVRMSG, split_server_put_and_log) while True: -- 2.30.2