Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-07-01 16:33:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-07-01 16:33:34 +0400
commit2c66ab12e93454d1783fc884600eebcba92ad314 (patch)
treef6f96d79d80c7f1742b8934ec2c089430072ec6e /release
parent01550f880ed97f074a03603c0000e11af219f324 (diff)
minor pep8 edits
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy/__init__.py2
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py2
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py5
3 files changed, 4 insertions, 5 deletions
diff --git a/release/scripts/modules/bpy/__init__.py b/release/scripts/modules/bpy/__init__.py
index 6dcc5d7b285..9c48dc89f83 100644
--- a/release/scripts/modules/bpy/__init__.py
+++ b/release/scripts/modules/bpy/__init__.py
@@ -65,4 +65,4 @@ def _main():
_main()
-del _main \ No newline at end of file
+del _main
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index 7d4b78396bd..4c92296dacd 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -878,7 +878,7 @@ class PARTICLE_PT_render(ParticleButtonsPanel, bpy.types.Panel):
col.prop(part, "billboard_tilt_random", text="Random", slider=True)
col = row.column()
col.prop(part, "billboard_offset")
-
+
row = layout.row()
col = row.column()
col.prop(part, "billboard_size", text="Scale")
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 9c31b172ee9..c598788006c 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -883,7 +883,7 @@ class USERPREF_PT_addons(bpy.types.Panel):
if user_script_path is not None:
user_addon_paths.append(os.path.join(user_script_path(), "addons"))
user_addon_paths.append(os.path.join(bpy.utils.resource_path('USER'), "scripts", "addons"))
-
+
for path in user_addon_paths:
if bpy.path.is_subdir(mod.__file__, path):
return True
@@ -1001,8 +1001,7 @@ class USERPREF_PT_addons(bpy.types.Panel):
for i in range(4 - tot_row):
split.separator()
-
-
+
# Append missing scripts
# First collect scripts that are used but have no script file.