1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-03-01 13:42:12 +01:00

Merge pull request #1354 from dmach/fix-lbl

Fix a crash in 'localbuildlog' command by removing unwanted decode_it() call
This commit is contained in:
Daniel Mach 2023-07-13 14:16:29 +02:00 committed by GitHub
commit 404b54a980
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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