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>2018-12-06 09:57:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-06 22:57:35 +0300
commitf8160146845605f8d5fc5c65d8ae4bf99d47a827 (patch)
treeda73547987a7eed9608df6952b8f8306ff678b0a /io_scene_gltf2/__init__.py
parentc62dc337654e41a03dbe944dc0001acd8811fb15 (diff)
io_scene_gltf2: quiet warning
remove trailing '.'
Diffstat (limited to 'io_scene_gltf2/__init__.py')
-rwxr-xr-xio_scene_gltf2/__init__.py7
1 files changed, 4 insertions, 3 deletions
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)
-