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

Commit

Permalink
fix copy value to string
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Jun 10, 2022
1 parent e21caf1 commit d2de153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/tools/settings/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def copy_value():
)

# Copy as json
value = settings_data["value"]
value = settings_data[VALUE_KEY]
json_encoded_data = None
if isinstance(value, (dict, list)):
json_encoded_data = QtCore.QByteArray()
Expand Down

0 comments on commit d2de153

Please sign in to comment.