From bc8e84af3abc0203329f8fe79fb680329b3713bf Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Wed, 11 Jun 2025 09:18:49 +0200 Subject: [PATCH] run: fix invalid error handling --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index b0cc6f0cf..1b3ade35e 100755 --- a/run.py +++ b/run.py @@ -178,7 +178,7 @@ def pipe_reader(fileobj, output=None, verbose=False, utf8_errors=[]): try: line = line.decode().strip() except: - self.utf8_errors.append("Invalid line") + utf8_errors.append("Invalid line") print(line) -- 2.47.2