mirror of
https://github.com/openSUSE/osc.git
synced 2025-08-06 15:43:39 +02:00
Merge pull request #729 from lethliel/fix_decoding
fix decoding in interactive request mode
This commit is contained in:
@@ -7528,7 +7528,7 @@ def request_interactive_review(apiurl, request, initial_cmd='', group=None,
|
||||
if tmpfile is not None:
|
||||
tmpfile.seek(0)
|
||||
# the read bytes probably have a moderate size so the str won't be too large
|
||||
footer += '\n\n' + tmpfile.read()
|
||||
footer += '\n\n' + decode_it(tmpfile.read())
|
||||
if msg is None:
|
||||
try:
|
||||
msg = edit_message(footer = footer, template=msg_template)
|
||||
|
Reference in New Issue
Block a user