From 9b98909c8b51a0fb03ed9a0680fce4a3496c8c31 Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Sat, 22 Nov 2025 21:09:11 -0800 Subject: [PATCH] Fixed embarrassing typo that stopped PSK collection exporter from working --- io_scene_psk_psa/psk/export/operators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io_scene_psk_psa/psk/export/operators.py b/io_scene_psk_psa/psk/export/operators.py index 3bbcf23..cbeeade 100644 --- a/io_scene_psk_psa/psk/export/operators.py +++ b/io_scene_psk_psa/psk/export/operators.py @@ -270,8 +270,8 @@ class PSK_OT_export_collection(Operator, ExportHelper, PskExportMixin): def execute(self, context): collection = bpy.data.collections.get(self.collection, None) - if collection is not None: - return {'CANCELLED'} + assert collection is not None + assert context.scene is not None try: input_objects = get_psk_input_objects_for_collection(collection)