[Bf-extensions-cvs] [f8160146] blender2.8: io_scene_gltf2: quiet warning

Campbell Barton noreply at git.blender.org
Thu Dec 6 20:57:53 CET 2018


Commit: f8160146845605f8d5fc5c65d8ae4bf99d47a827
Author: Campbell Barton
Date:   Thu Dec 6 17:57:46 2018 +1100
Branches: blender2.8
https://developer.blender.org/rBAf8160146845605f8d5fc5c65d8ae4bf99d47a827

io_scene_gltf2: quiet warning

remove trailing '.'

===================================================================

M	io_scene_gltf2/__init__.py

===================================================================

diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 769c3be6..de2462be 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)
-



More information about the Bf-extensions-cvs mailing list