[Bf-extensions-cvs] [c0ef1480] master: Cleanup: remove trailing '.'

Campbell Barton noreply at git.blender.org
Fri Nov 12 07:00:28 CET 2021


Commit: c0ef14803b92e09a67b122b87b70b4366baf6259
Author: Campbell Barton
Date:   Fri Nov 12 17:00:04 2021 +1100
Branches: master
https://developer.blender.org/rBAc0ef14803b92e09a67b122b87b70b4366baf6259

Cleanup: remove trailing '.'

These warn in debug builds.

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

M	blenderkit/__init__.py

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

diff --git a/blenderkit/__init__.py b/blenderkit/__init__.py
index 22afd2a1..173b6c85 100644
--- a/blenderkit/__init__.py
+++ b/blenderkit/__init__.py
@@ -991,7 +991,7 @@ class BlenderKitHDRUploadProps(PropertyGroup, BlenderKitCommonUploadProps):
                                         default=0)
     evs_cap: IntProperty(name="EV cap", description="EVs dynamic range",
                                         default=0)
-    true_hdr: BoolProperty(name="Real HDR", description="Image has High dynamic range.",default=False)
+    true_hdr: BoolProperty(name="Real HDR", description="Image has High dynamic range", default=False)
 
 
 class BlenderKitBrushUploadProps(PropertyGroup, BlenderKitCommonUploadProps):
@@ -1532,7 +1532,7 @@ class BlenderKitHDRSearchProps(PropertyGroup, BlenderKitCommonSearchProps):
 
     true_hdr: BoolProperty(
         name='Real HDRs only',
-        description='Search only for real HDRs, this means images that have a range higher than 0-1 in their pixels.',
+        description='Search only for real HDRs, this means images that have a range higher than 0-1 in their pixels',
         default=True,
         update=search.search_update
     )



More information about the Bf-extensions-cvs mailing list