io_scene_gltf2: quiet warning

remove trailing '.'
This commit is contained in:
Campbell Barton 2018-12-06 17:57:46 +11:00
parent c62dc33765
commit f816014684
1 changed files with 4 additions and 3 deletions

View File

@ -83,8 +83,10 @@ class ExportGLTF2_Base:
('GLTF_SEPARATE', 'glTF Separate (.gltf + .bin + textures)',
'Exports multiple files, with separate JSON, binary and texture data. '
'Easiest to edit later')),
description='Output format and embedding options. Binary is most efficient, '
'but JSON (embedded or separate) may be easier to edit later.',
description=(
'Output format and embedding options. Binary is most efficient, '
'but JSON (embedded or separate) may be easier to edit later'
),
default='GLB'
)
@ -519,4 +521,3 @@ def unregister():
# remove from the export / import menu
bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)