Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3708 from pypeclub/bugfix/wrong_settings_update_o…
Browse files Browse the repository at this point in the history
…peration

Settings: Fix project overrides save
  • Loading branch information
iLLiCiTiT authored Aug 23, 2022
2 parents 286407b + 5bf34eb commit c74a6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/settings/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ def _save_project_data(self, project_name, doc_type, data_cache):
if project_settings_doc:
self.collection.update_one(
{"_id": project_settings_doc["_id"]},
new_project_settings_doc
{"$set": new_project_settings_doc}
)
else:
self.collection.insert_one(new_project_settings_doc)
Expand Down

0 comments on commit c74a6a8

Please sign in to comment.