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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:01:43 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:01:43 +0400
commit2dc06f6d50d14a97ff0c37f88b6979d18a0fd279 (patch)
tree60728ddc2bb420bcf11901e27a11a677276cb889 /object_fracture
parent842985a49773634076d45f845957216006fc683e (diff)
Style edit (mostly), use """ for docstrings (not ''').
Diffstat (limited to 'object_fracture')
-rw-r--r--object_fracture/fracture_ops.py10
-rw-r--r--object_fracture/fracture_setup.py2
2 files changed, 6 insertions, 6 deletions
diff --git a/object_fracture/fracture_ops.py b/object_fracture/fracture_ops.py
index 7a7ec387..87588aa4 100644
--- a/object_fracture/fracture_ops.py
+++ b/object_fracture/fracture_ops.py
@@ -341,7 +341,7 @@ def fracture_group(context, group):
class FractureSimple(bpy.types.Operator):
- '''Split object with boolean operations for simulation, uses an object'''
+ """Split object with boolean operations for simulation, uses an object"""
bl_idname = "object.fracture_simple"
bl_label = "Fracture Object"
bl_options = {'REGISTER', 'UNDO'}
@@ -387,7 +387,7 @@ class FractureSimple(bpy.types.Operator):
class FractureGroup(bpy.types.Operator):
- '''Split object with boolean operations for simulation, uses a group'''
+ """Split object with boolean operations for simulation, uses a group"""
bl_idname = "object.fracture_group"
bl_label = "Fracture Object (Group)"
bl_options = {'REGISTER', 'UNDO'}
@@ -447,7 +447,7 @@ def import_object(obname):
class ImportFractureRecorder(bpy.types.Operator):
- '''Imports a rigidbody recorder'''
+ """Imports a rigidbody recorder"""
bl_idname = "object.import_fracture_recorder"
bl_label = "Add Rigidbody Recorder (Fracture)"
bl_options = {'REGISTER', 'UNDO'}
@@ -459,7 +459,7 @@ class ImportFractureRecorder(bpy.types.Operator):
class ImportFractureBomb(bpy.types.Operator):
- '''Import a bomb'''
+ """Import a bomb"""
bl_idname = "object.import_fracture_bomb"
bl_label = "Add Bomb (Fracture)"
bl_options = {'REGISTER', 'UNDO'}
@@ -471,7 +471,7 @@ class ImportFractureBomb(bpy.types.Operator):
class ImportFractureProjectile(bpy.types.Operator, ):
- '''Imports a projectile'''
+ """Imports a projectile"""
bl_idname = "object.import_fracture_projectile"
bl_label = "Add Projectile (Fracture)"
bl_options = {'REGISTER', 'UNDO'}
diff --git a/object_fracture/fracture_setup.py b/object_fracture/fracture_setup.py
index 3ab93821..02c435f8 100644
--- a/object_fracture/fracture_setup.py
+++ b/object_fracture/fracture_setup.py
@@ -62,7 +62,7 @@ def setupshards(context):
class SetupFractureShards(bpy.types.Operator):
- ''''''
+ """"""
bl_idname = "object.setup_fracture_shards"
bl_label = "Setup Fracture Shards"
bl_options = {'REGISTER', 'UNDO'}