mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
fix attribute changes
This commit is contained in:
parent
187411ef8b
commit
16aff5224f
1 changed files with 3 additions and 3 deletions
|
|
@ -1995,11 +1995,11 @@ class PublisherController(BasePublishController):
|
|||
|
||||
# Cleanup of publishing process
|
||||
self.publish_finished = True
|
||||
self.publish_progress = self._publish_max_progress
|
||||
self.publish_progress = self.publish_max_progress
|
||||
yield MainThreadItem(self.stop_publish)
|
||||
|
||||
def _add_validation_error(self, result):
|
||||
self.publish_has_validation_errors = False
|
||||
self.publish_has_validation_errors = True
|
||||
self._publish_validation_errors.add_error(
|
||||
result["plugin"],
|
||||
result["error"],
|
||||
|
|
@ -2030,7 +2030,7 @@ class PublisherController(BasePublishController):
|
|||
" to your supervisor or OpenPype."
|
||||
)
|
||||
self.publish_error_msg = msg
|
||||
self.publish_has_crashed = False
|
||||
self.publish_has_crashed = True
|
||||
|
||||
self._publish_next_process()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue