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>2009-12-06 01:03:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-06 01:03:07 +0300
commit5ebe54f470c364ff4ea86d15198225295092963e (patch)
treea0a1c69fe0bbd824276dc653499cba9265526dc9 /release/scripts/modules/bpy/__init__.py
parent8821f7d7eab7bc8e928805523dd26c275e095241 (diff)
pep8 edits and fix some warnings
Diffstat (limited to 'release/scripts/modules/bpy/__init__.py')
-rw-r--r--release/scripts/modules/bpy/__init__.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/release/scripts/modules/bpy/__init__.py b/release/scripts/modules/bpy/__init__.py
index 72ef4ae3bd8..7dfa403a54f 100644
--- a/release/scripts/modules/bpy/__init__.py
+++ b/release/scripts/modules/bpy/__init__.py
@@ -16,6 +16,8 @@
#
# ##### END GPL LICENSE BLOCK #####
+# <pep8 compliant>
+
# internal blender C module
import _bpy
from _bpy import types, props
@@ -38,8 +40,8 @@ def load_scripts(reload_scripts=False):
import os
import traceback
import time
-
-
+
+
t_main = time.time()
def test_import(module_name):
@@ -52,7 +54,7 @@ def load_scripts(reload_scripts=False):
except:
traceback.print_exc()
return None
-
+
for base_path in utils.script_paths():
for path_subdir in ("ui", "op", "io"):