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:
authorAnkit Meel <ankitjmeel@gmail.com>2021-02-12 08:01:55 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2021-02-12 08:01:55 +0300
commita65fb173355bca667432eab461bbbd08519ce1ae (patch)
tree4627c1de708782217b339c091349c96f04011479 /render_povray
parentca40d35086be8e527755e09a1fc88c970e93fb6b (diff)
Cleanup: Remove trailing period in descriptions.
Reduces warnings while running tests. Also fix some descriptions with strings concatenated but without a space in between. Reviewed by campbellbarton Differential Revision: https://developer.blender.org/D9655
Diffstat (limited to 'render_povray')
-rw-r--r--render_povray/__init__.py2
-rw-r--r--render_povray/render.py2
-rw-r--r--render_povray/ui.py8
3 files changed, 6 insertions, 6 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index 5df45df8..da7296a9 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -433,7 +433,7 @@ class RenderPovSettingsScene(PropertyGroup):
" to scattering in the direction of the light and negative "
"values lead to scattering in the opposite direction of the "
"light. Larger values of e (or smaller values in the negative"
- " case) increase the directional property of the scattering.",
+ " case) increase the directional property of the scattering",
precision=2,
step=0.01,
min=-1.0,
diff --git a/render_povray/render.py b/render_povray/render.py
index f9de22e4..c4a93ebd 100644
--- a/render_povray/render.py
+++ b/render_povray/render.py
@@ -5987,7 +5987,7 @@ class PovrayRender(bpy.types.RenderEngine):
#################################Operators########################################
##################################################################################
class RenderPovTexturePreview(Operator):
- """Export only files necessary to texture preview and render image."""
+ """Export only files necessary to texture preview and render image"""
bl_idname = "tex.preview_update"
bl_label = "Update preview"
diff --git a/render_povray/ui.py b/render_povray/ui.py
index 75e99ec1..297c2e0d 100644
--- a/render_povray/ui.py
+++ b/render_povray/ui.py
@@ -838,7 +838,7 @@ class LIGHT_MT_POV_presets(Menu):
class LIGHT_OT_POV_add_preset(AddPresetBase, Operator):
- """Use this class to define pov world buttons."""
+ """Use this class to define pov world buttons"""
'''Add a Light Preset'''
bl_idname = "object.light_preset_add"
@@ -1184,7 +1184,7 @@ del properties_data_light
class WORLD_PT_POV_world(WorldButtonsPanel, Panel):
- """Use this class to define pov world buttons."""
+ """Use this class to define pov world buttons"""
bl_label = "World"
COMPAT_ENGINES = {'POVRAY_RENDER'}
@@ -1564,7 +1564,7 @@ class POV_RADIOSITY_MT_presets(Menu):
class RENDER_OT_POV_radiosity_add_preset(AddPresetBase, Operator):
- """Use this class to define pov radiosity add presets button."""
+ """Use this class to define pov radiosity add presets button"""
'''Add a Radiosity Preset'''
bl_idname = "scene.radiosity_preset_add"
@@ -4364,7 +4364,7 @@ class CAMERA_PT_POV_replacement_text(CameraDataButtonsPanel, Panel):
class TEXT_OT_POV_insert(Operator):
- """Use this class to create blender text editor operator to insert pov snippets like other pov IDEs."""
+ """Use this class to create blender text editor operator to insert pov snippets like other pov IDEs"""
bl_idname = "text.povray_insert"
bl_label = "Insert"