From 45d70f8320f3fc96441febb3f4e0ff2637b06143 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Thu, 13 Jul 2023 13:24:39 +0200 Subject: [PATCH] Fix a crash in 'localbuildlog' command by removing unwanted decode_it() call --- osc/commandline.py | 1 - 1 file changed, 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index c0310590..ee4f3a4b 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -6379,7 +6379,6 @@ Please submit there instead, or use --nodevelproject to force direct submission. f = open(logfile, 'rb') f.seek(offset) data = f.read(BUFSIZE) - data = decode_it(data) while len(data): if opts.strip_time or conf.config['buildlog_strip_time']: # FIXME: this is not working when the time is split between 2 chunks