From c47517a1f060ff627401ec173a08d370b176f84f Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Fri, 26 Apr 2019 17:58:14 +0200 Subject: [PATCH] representations have key representations instead of components --- pype/standalonepublish/widgets/widget_drop_frame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/standalonepublish/widgets/widget_drop_frame.py b/pype/standalonepublish/widgets/widget_drop_frame.py index 90434e75f4..dd9072448b 100644 --- a/pype/standalonepublish/widgets/widget_drop_frame.py +++ b/pype/standalonepublish/widgets/widget_drop_frame.py @@ -367,7 +367,7 @@ class DropDataFrame(QtWidgets.QFrame): self.parent_widget.working_stop() def collect_data(self): - data = {'components' : []} + data = {'representations' : []} for item in self.items: - data['components'].append(item.collect_data()) + data['representations'].append(item.collect_data()) return data