Skip to content
Snippets Groups Projects
Commit f8160146 authored by Campbell Barton's avatar Campbell Barton
Browse files

io_scene_gltf2: quiet warning

remove trailing '.'
parent c62dc337
No related branches found
No related tags found
No related merge requests found
...@@ -83,8 +83,10 @@ class ExportGLTF2_Base: ...@@ -83,8 +83,10 @@ class ExportGLTF2_Base:
('GLTF_SEPARATE', 'glTF Separate (.gltf + .bin + textures)', ('GLTF_SEPARATE', 'glTF Separate (.gltf + .bin + textures)',
'Exports multiple files, with separate JSON, binary and texture data. ' 'Exports multiple files, with separate JSON, binary and texture data. '
'Easiest to edit later')), 'Easiest to edit later')),
description='Output format and embedding options. Binary is most efficient, ' description=(
'but JSON (embedded or separate) may be easier to edit later.', 'Output format and embedding options. Binary is most efficient, '
'but JSON (embedded or separate) may be easier to edit later'
),
default='GLB' default='GLB'
) )
...@@ -519,4 +521,3 @@ def unregister(): ...@@ -519,4 +521,3 @@ def unregister():
# remove from the export / import menu # remove from the export / import menu
bpy.types.TOPBAR_MT_file_export.remove(menu_func_export) bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import) bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment