From 487778f6774950a6fa6074ebefd137c275514940 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 6 Nov 2018 21:56:54 +0100 Subject: Fix T57660: Export of STL format causes an exception. Raising StopIteration was never a good idea to abort a generator function, and since 3.6 it's converted to a regular RuntimeError exception! Proper way to do that is just to use return statement (as long as there is a yield statement somewhere in the function code, it is a generator, and return statement has proper special handling in that case). --- io_mesh_stl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io_mesh_stl/__init__.py') diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py index 6859627c..b1807d2a 100644 --- a/io_mesh_stl/__init__.py +++ b/io_mesh_stl/__init__.py @@ -21,7 +21,7 @@ bl_info = { "name": "STL format", "author": "Guillaume Bouchard (Guillaum)", - "version": (1, 1, 2), + "version": (1, 1, 3), "blender": (2, 80, 0), "location": "File > Import-Export > Stl", "description": "Import-Export STL files", -- cgit v1.2.3