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 /render_copy_settings
parent842985a49773634076d45f845957216006fc683e (diff)
Style edit (mostly), use """ for docstrings (not ''').
Diffstat (limited to 'render_copy_settings')
-rw-r--r--render_copy_settings/operator.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/render_copy_settings/operator.py b/render_copy_settings/operator.py
index 3b0da84f..31d36ecd 100644
--- a/render_copy_settings/operator.py
+++ b/render_copy_settings/operator.py
@@ -49,10 +49,8 @@ def collection_property_sort(collection, sortkey, start_idx=0):
class RenderCopySettingsPrepare(bpy.types.Operator):
- '''
- Prepare internal data for render_copy_settings (gathering all existing
- render settings, and scenes)
- '''
+ """Prepare internal data for render_copy_settings (gathering all """ \
+ """existingrender settings, and scenes)"""
bl_idname = "scene.render_copy_settings_prepare"
bl_label = "Render: Copy Settings Prepare"
bl_option = {'REGISTER'}
@@ -128,7 +126,7 @@ from bpy.props import EnumProperty
class RenderCopySettingsPreset(bpy.types.Operator):
- '''Apply some presets of render settings to copy to other scenes'''
+ """Apply some presets of render settings to copy to other scenes"""
bl_idname = "scene.render_copy_settings_preset"
bl_label = "Render: Copy Settings Preset"
bl_description = "Apply or clear this preset of render settings"
@@ -179,7 +177,7 @@ def do_copy(context, affected_settings, allowed_scenes):
class RenderCopySettings(bpy.types.Operator):
- '''Copy render settings from current scene to others'''
+ """Copy render settings from current scene to others"""
bl_idname = "scene.render_copy_settings"
bl_label = "Render: Copy Settings"
# Enable undo…