[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3186] trunk/py/scripts/addons/ io_scene_x3d/__init__.py: VRML importer only supports VRML2 (bug #30624)

Campbell Barton ideasman42 at gmail.com
Thu Mar 29 01:06:13 CEST 2012


Revision: 3186
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3186
Author:   campbellbarton
Date:     2012-03-28 23:06:05 +0000 (Wed, 28 Mar 2012)
Log Message:
-----------
VRML importer only supports VRML2 (bug #30624)

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

Modified: trunk/py/scripts/addons/io_scene_x3d/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_scene_x3d/__init__.py	2012-03-28 05:25:52 UTC (rev 3185)
+++ trunk/py/scripts/addons/io_scene_x3d/__init__.py	2012-03-28 23:06:05 UTC (rev 3186)
@@ -23,7 +23,7 @@
     "author": "Campbell Barton, Bart",
     "blender": (2, 5, 7),
     "location": "File > Import-Export",
-    "description": "Import-Export X3D, Import VRML",
+    "description": "Import-Export X3D, Import VRML2",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
                 "Scripts/Import-Export/Web3D",
@@ -48,7 +48,7 @@
 
 
 class ImportX3D(bpy.types.Operator, ImportHelper):
-    '''Import and X3D or VRML file'''
+    '''Import and X3D or VRML2 file'''
     bl_idname = "import_scene.x3d"
     bl_label = "Import X3D/VRML"
     bl_options = {'PRESET', 'UNDO'}



More information about the Bf-extensions-cvs mailing list