mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Show more details on failure
This commit is contained in:
parent
6a24b7b364
commit
e6d90a5729
1 changed files with 3 additions and 1 deletions
|
@ -512,7 +512,9 @@ class ConvertThread(QtCore.QThread):
|
|||
except:
|
||||
print(f"Invalid JSON returned from container: {line}")
|
||||
self.error = True
|
||||
self.update.emit(True, "Invalid JSON returned from container", 0)
|
||||
self.update.emit(
|
||||
True, f"Invalid JSON returned from container:\n\n{line}", 0
|
||||
)
|
||||
return
|
||||
|
||||
s = Style.BRIGHT + Fore.CYAN + f"{status['percentage']}% "
|
||||
|
|
Loading…
Reference in a new issue