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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-08-02 01:04:18 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-08-02 01:04:18 +0400
commit7fa6a0480d7f6f0334df33154641a3a8cbffdc7c (patch)
tree88954c0aec6a3f7b2a4de1f8e0324015ac55dbb3 /io_import_images_as_planes.py
parentafdec492ceb51e77c2ac38bc584c7c69203c9257 (diff)
Renaming bl_idname of import images as plane addon from "import.image_to_plane" to "import_image.to_plane" (import is a keyword in python...). Thanks to P. Staples in tracker!
Diffstat (limited to 'io_import_images_as_planes.py')
-rw-r--r--io_import_images_as_planes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py
index 85a2d230..2a441047 100644
--- a/io_import_images_as_planes.py
+++ b/io_import_images_as_planes.py
@@ -165,7 +165,7 @@ class IMPORT_OT_image_to_plane(Operator, AddObjectHelper):
"""Create mesh plane(s) from image files """ \
"""with the appropiate aspect ratio"""
- bl_idname = "import.image_to_plane"
+ bl_idname = "import_image.to_plane"
bl_label = "Import Images as Planes"
bl_options = {'REGISTER', 'UNDO'}