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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-01-19 00:51:26 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-01-19 00:51:26 +0400
commit7771f0fee3e508674b4852d0ae1f3ae01243ade8 (patch)
treee79c31704cc43b873b735bc05f65e4866bcd6a2a /add_mesh_extra_objects
parente837d39bd3928cf829893b4fa64100ed0e7d2256 (diff)
- Removed dots from the end of description
- Check for keymap availability to suppress warning messages when running blender in background mode
Diffstat (limited to 'add_mesh_extra_objects')
-rw-r--r--add_mesh_extra_objects/add_mesh_extra_objects.py6
-rw-r--r--add_mesh_extra_objects/add_mesh_gears.py4
-rw-r--r--add_mesh_extra_objects/add_mesh_gemstones.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/add_mesh_extra_objects/add_mesh_extra_objects.py b/add_mesh_extra_objects/add_mesh_extra_objects.py
index 819b9732..f2f4d8cd 100644
--- a/add_mesh_extra_objects/add_mesh_extra_objects.py
+++ b/add_mesh_extra_objects/add_mesh_extra_objects.py
@@ -357,7 +357,7 @@ def trapezohedron(s,r,h):
return verts,faces
class AddSqorus(bpy.types.Operator):
- '''Add a sqorus mesh.'''
+ '''Add a sqorus mesh'''
bl_idname = "mesh.primitive_sqorus_add"
bl_label = "Add Sqorus"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
@@ -386,7 +386,7 @@ class AddSqorus(bpy.types.Operator):
class AddWedge(bpy.types.Operator):
- '''Add a wedge mesh.'''
+ '''Add a wedge mesh'''
bl_idname = "mesh.primitive_wedge_add"
bl_label = "Add Wedge"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
@@ -420,7 +420,7 @@ class AddWedge(bpy.types.Operator):
class AddStar(bpy.types.Operator):
- '''Add a star mesh.'''
+ '''Add a star mesh'''
bl_idname = "mesh.primitive_star_add"
bl_label = "Add Star"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
diff --git a/add_mesh_extra_objects/add_mesh_gears.py b/add_mesh_extra_objects/add_mesh_gears.py
index 0a0ba8d8..8b35ffca 100644
--- a/add_mesh_extra_objects/add_mesh_gears.py
+++ b/add_mesh_extra_objects/add_mesh_gears.py
@@ -570,7 +570,7 @@ def add_worm(teethNum, rowNum, radius, Ad, De, p_angle,
class AddGear(bpy.types.Operator):
- '''Add a gear mesh.'''
+ '''Add a gear mesh'''
bl_idname = "mesh.primitive_gear"
bl_label = "Add Gear"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
@@ -676,7 +676,7 @@ class AddGear(bpy.types.Operator):
class AddWormGear(bpy.types.Operator):
- '''Add a worm gear mesh.'''
+ '''Add a worm gear mesh'''
bl_idname = "mesh.primitive_worm_gear"
bl_label = "Add Worm Gear"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}
diff --git a/add_mesh_extra_objects/add_mesh_gemstones.py b/add_mesh_extra_objects/add_mesh_gemstones.py
index 7c25f935..378ee072 100644
--- a/add_mesh_extra_objects/add_mesh_gemstones.py
+++ b/add_mesh_extra_objects/add_mesh_gemstones.py
@@ -238,7 +238,7 @@ def add_diamond(segments, girdle_radius, table_radius,
class AddDiamond(bpy.types.Operator):
- '''Add a diamond mesh.'''
+ '''Add a diamond mesh'''
bl_idname = "mesh.primitive_diamond_add"
bl_label = "Add Diamond"
bl_options = {'REGISTER', 'UNDO', 'PRESET'}