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>2012-03-09 04:41:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-09 04:41:09 +0400
commit4f7bdc59d31e94bc97955c1efeef2a8fce0c8ecd (patch)
tree7e0a36829cf52ff260821ce02716727052b95d32 /source/tests
parent27d43f3fd3a6fbda95cdb87e4672fe34f19c2205 (diff)
style cleanup: spelling.
also remove large, duplicate comments from sunsky.h
Diffstat (limited to 'source/tests')
-rw-r--r--source/tests/bl_load_addons.py2
-rw-r--r--source/tests/bl_run_operators.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/tests/bl_load_addons.py b/source/tests/bl_load_addons.py
index 5bd83abbcb6..21a0101d684 100644
--- a/source/tests/bl_load_addons.py
+++ b/source/tests/bl_load_addons.py
@@ -57,7 +57,7 @@ def reload_addons(do_reload=True, do_reverse=True):
imp.reload(sys.modules[mod_name])
if do_reverse:
- # incase order matters when it shouldnt
+ # in case order matters when it shouldnt
modules.reverse()
diff --git a/source/tests/bl_run_operators.py b/source/tests/bl_run_operators.py
index 658a6849320..53cc37bc02b 100644
--- a/source/tests/bl_run_operators.py
+++ b/source/tests/bl_run_operators.py
@@ -67,7 +67,7 @@ def run_ops(operators, setup_func=None):
for op_id, op in operators:
if op.poll():
print(" operator:", op_id)
- sys.stdout.flush() # incase of crash
+ sys.stdout.flush() # in case of crash
# disable will get blender in a bad state and crash easy!
bpy.ops.wm.read_factory_settings()