mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix status handling
This commit is contained in:
parent
60f7d48b70
commit
509c209093
1 changed files with 1 additions and 1 deletions
|
|
@ -389,7 +389,7 @@ class InstallDialog(QtWidgets.QDialog):
|
|||
|
||||
def _installation_finished(self):
|
||||
status = self._install_thread.result()
|
||||
if status >= 0:
|
||||
if status is not None and status >= 0:
|
||||
self._update_progress(100)
|
||||
QtWidgets.QApplication.processEvents()
|
||||
self.done(3)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue