mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-29 02:12:36 +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:
|
except:
|
||||||
print(f"Invalid JSON returned from container: {line}")
|
print(f"Invalid JSON returned from container: {line}")
|
||||||
self.error = True
|
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
|
return
|
||||||
|
|
||||||
s = Style.BRIGHT + Fore.CYAN + f"{status['percentage']}% "
|
s = Style.BRIGHT + Fore.CYAN + f"{status['percentage']}% "
|
||||||
|
|
Loading…
Reference in a new issue