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

Merge pull request #630 from lethliel/fix_decoding_on_lbl

decode data on osc lbl
This commit is contained in:
Marco Strigl 2019-09-12 12:27:42 +02:00 committed by GitHub
commit 035457cc26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5619,7 +5619,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
while len(data):
if opts.strip_time or conf.config['buildlog_strip_time']:
data = buildlog_strip_time(data)
sys.stdout.write(data)
sys.stdout.write(decode_it(data))
data = f.read(BUFSIZE)
f.close()