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-03-29 03:06:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-29 03:06:05 +0400
commitbdef8d94a1649ade5f7d51ff3f67ee594fbbd517 (patch)
tree9a0106ba31d34f62c7d1ad494b1512517a350d6c /io_scene_x3d/__init__.py
parent20ec12d4151565729e8d7b7340cdbf5957746568 (diff)
VRML importer only supports VRML2 (bug #30624)
Diffstat (limited to 'io_scene_x3d/__init__.py')
-rw-r--r--io_scene_x3d/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index 5a7429f9..c94d3b7e 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -23,7 +23,7 @@ bl_info = {
"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 @@ from bpy_extras.io_utils import (ImportHelper,
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'}