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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-16 05:25:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-16 05:25:03 +0300
commitfee5363912d93f3ef99f3a012f5d3d3f29abe8db (patch)
tree6f68ee5445b5e72dfd4062c2caf29bf9717e660b /doc
parent78c135d93efe758143d21f1808c0aa7d4d902c23 (diff)
bugfix [#26094] Going to Bone Roll menu brings up python error
also correct for pep8 warnings.
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.data.py2
-rw-r--r--doc/python_api/sphinx_doc_gen.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/doc/python_api/examples/bpy.data.py b/doc/python_api/examples/bpy.data.py
index fc1145a523f..555b421ddac 100644
--- a/doc/python_api/examples/bpy.data.py
+++ b/doc/python_api/examples/bpy.data.py
@@ -25,5 +25,3 @@ for image in bpy.data.images:
file.write("%s %dx%d\n" % (image.filepath, image.size[0], image.size[1]))
file.close()
-
-
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 68c14a75c5b..b383499e822 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -423,7 +423,7 @@ def pycontext2sphinx(BASEPATH):
if len(type_map) > len(unique):
raise Exception("Some types are not used: %s" % str([member for member in type_map if member not in unique]))
else:
- pass # will have raised an error above
+ pass # will have raised an error above
def rna2sphinx(BASEPATH):