[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4363] trunk/py/scripts/addons/ io_scene_vrml2/__init__.py: rename vrml2 export operator.

Campbell Barton ideasman42 at gmail.com
Tue Mar 12 08:21:52 CET 2013


Revision: 4363
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4363
Author:   campbellbarton
Date:     2013-03-12 07:21:52 +0000 (Tue, 12 Mar 2013)
Log Message:
-----------
rename vrml2 export operator.

Modified Paths:
--------------
    trunk/py/scripts/addons/io_scene_vrml2/__init__.py

Modified: trunk/py/scripts/addons/io_scene_vrml2/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_scene_vrml2/__init__.py	2013-03-12 07:21:20 UTC (rev 4362)
+++ trunk/py/scripts/addons/io_scene_vrml2/__init__.py	2013-03-12 07:21:52 UTC (rev 4363)
@@ -23,7 +23,7 @@
     "author": "Campbell Barton",
     "blender": (2, 66, 0),
     "location": "File > Export",
-    "description": "Exports the active mesh object to VRML2, supporting vertex and material colors",
+    "description": "Exports mesh objects to VRML2, supporting vertex and material colors",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
                 "Scripts/Import-Export/VRML2",
@@ -43,9 +43,9 @@
 from bpy_extras.io_utils import ExportHelper, path_reference_mode
 
 class ExportVRML(bpy.types.Operator, ExportHelper):
-    """Export a single object as a VRML2, """ \
+    """Export mesh objects as a VRML2, """ \
     """colors and texture coordinates"""
-    bl_idname = "export_mesh.vrml2"
+    bl_idname = "export_scene.vrml2"
     bl_label = "Export VRML2"
 
     filename_ext = ".wrl"



More information about the Bf-extensions-cvs mailing list