From f8160146845605f8d5fc5c65d8ae4bf99d47a827 Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Thu, 6 Dec 2018 17:57:46 +1100 Subject: [PATCH] io_scene_gltf2: quiet warning remove trailing '.' --- io_scene_gltf2/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py index 769c3be66..de2462be5 100755 --- a/io_scene_gltf2/__init__.py +++ b/io_scene_gltf2/__init__.py @@ -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) - -- GitLab