From bae1e38112cc8a756388b92f1447c5e69112e6ab Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Thu, 9 Jun 2022 10:59:04 +0200 Subject: [PATCH] fix kwargs name in switch dialog --- openpype/tools/sceneinventory/switch_dialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/tools/sceneinventory/switch_dialog.py b/openpype/tools/sceneinventory/switch_dialog.py index aa4dcd73cd..1d1d5cbb91 100644 --- a/openpype/tools/sceneinventory/switch_dialog.py +++ b/openpype/tools/sceneinventory/switch_dialog.py @@ -944,7 +944,7 @@ class SwitchAssetDialog(QtWidgets.QDialog): repre_docs = list( get_representations( project_name, - subset_ids=subset_id_by_version_id.keys(), + version_ids=subset_id_by_version_id.keys(), fields=["name", "parent"] ) ) @@ -1102,7 +1102,7 @@ class SwitchAssetDialog(QtWidgets.QDialog): repre_docs = get_representations( project_name, - subset_ids=subset_id_by_version_id.keys(), + version_ids=subset_id_by_version_id.keys(), fields=["name", "parent"] ) repres_by_subset_name = {}