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>2017-03-19 04:49:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-19 04:49:18 +0300
commit57f376e9465c6b79ebd4409bc30e0b5930dd4140 (patch)
tree8dc6d5940bc8c39d7979d3b35c19d91f4bb83bf0 /mesh_looptools.py
parent1338695613af08ae912e6507f0fc89d54577e11a (diff)
Cleanup: trailing space
Diffstat (limited to 'mesh_looptools.py')
-rw-r--r--mesh_looptools.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 36e4a5c2..b05c7830 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -3717,15 +3717,15 @@ class RemoveGP(bpy.types.Operator):
bl_label = "Remove GP"
bl_description = "Remove all Grease Pencil Strokes"
bl_options = {'REGISTER', 'UNDO'}
-
+
def execute(self, context):
-
+
if context.gpencil_data is not None:
bpy.ops.gpencil.data_unlink()
else:
self.report({'INFO'}, "No Grease Pencil data to Unlink")
return {'CANCELLED'}
-
+
return{'FINISHED'}
class GStretch(bpy.types.Operator):