Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-26 13:57:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-26 13:57:17 +0400
commit7a7c13e2e7118304a7fe936d0b6c2f8e9a8cad53 (patch)
tree23a90d13d5034a7baeb1eba1f597eabf3a029911 /add_mesh_extra_objects/add_mesh_torusknot.py
parent56a8c5f8a4da28b3e808e28c6875043a573b5d9b (diff)
patch [#31578] Standard-conformal sets for .report() and operator return values
from Sebastian Nell (codemanx)
Diffstat (limited to 'add_mesh_extra_objects/add_mesh_torusknot.py')
-rw-r--r--add_mesh_extra_objects/add_mesh_torusknot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/add_mesh_extra_objects/add_mesh_torusknot.py b/add_mesh_extra_objects/add_mesh_torusknot.py
index b3ae6518..7174c657 100644
--- a/add_mesh_extra_objects/add_mesh_torusknot.py
+++ b/add_mesh_extra_objects/add_mesh_torusknot.py
@@ -132,7 +132,7 @@ class AddTorusKnot(bpy.types.Operator):
verts, faces = make_knot(self.objecttype,
self.resolution)
obj = create_mesh_object(context, verts, [], faces, "Torus Knot")
- return {"FINISHED"}
+ return {'FINISHED'}
'''
def menu_func(self, context):
self.layout.operator(AddTorusKnot.bl_idname, text="Torus Knot", icon="MESH_CUBE")