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-04-01 06:41:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-01 06:41:15 +0400
commitc8652b301fb59eead1f76bf34215af5413ffa4aa (patch)
treec80cb73435621bce2c473c5063ab9e2c266be5c8 /release/scripts/startup/bl_ui/space_userpref.py
parent14e94d742e985488490cbbb74e6e1dc9923bc4c2 (diff)
pep8 checker, mostly pedantic style changes but also found an error in mesh_utils.mesh_linked_faces()
Diffstat (limited to 'release/scripts/startup/bl_ui/space_userpref.py')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 69fe7c3d948..a81561de93f 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -21,7 +21,7 @@ import bpy
import os
import addon_utils
-from bpy.props import StringProperty, BoolProperty, EnumProperty
+from bpy.props import StringProperty, BoolProperty
def ui_items_general(col, context):
@@ -119,6 +119,7 @@ class USERPREF_MT_interaction_presets(bpy.types.Menu):
preset_operator = "script.execute_preset"
draw = bpy.types.Menu.draw_preset
+
class USERPREF_MT_appconfigs(bpy.types.Menu):
bl_label = "AppPresets"
preset_subdir = "keyconfig"
@@ -130,6 +131,7 @@ class USERPREF_MT_appconfigs(bpy.types.Menu):
# now draw the presets
bpy.types.Menu.draw_preset(self, context)
+
class USERPREF_MT_splash(bpy.types.Menu):
bl_label = "Splash"