Skip to content

Commit

Permalink
Addon Manager: Fix bug in updater
Browse files Browse the repository at this point in the history
  • Loading branch information
chennes committed Dec 7, 2022
1 parent fc12f15 commit 930dd9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/AddonManager/AddonManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1375,10 +1375,10 @@ def update_all(self) -> None:
self.update_all_worker.progress_made.connect(self.update_progress_bar)
self.update_all_worker.status_message.connect(self.show_information)
self.update_all_worker.success.connect(
functools.partial (self.subupdates_succeeded.append, repo)
self.subupdates_succeeded.append
)
self.update_all_worker.failure.connect(
functools.partial(self.subupdates_failed.append, repo)
self.subupdates_failed.append
)
self.update_all_worker.finished.connect(self.on_update_all_completed)
self.update_all_worker.start()
Expand Down

0 comments on commit 930dd9a

Please sign in to comment.