revert r44887, changes were OK but caused too many problems, better do this as a smaller patch.

sphinx_doc_gen.sh broke building docs - 
- examples/ svn directory was being removed since it assumed an out-of-source build.
- include references somehow stopped working (didnt find why).

also fixed an unrelated error with building docs in object_utils.py
This commit is contained in:
Campbell Barton
2012-03-15 03:50:52 +00:00
parent be7477c638
commit d772b51b56
2 changed files with 78 additions and 256 deletions

View File

@@ -21,14 +21,14 @@
__all__ = (
"add_object_align_init",
"object_data_add",
"object_generic_transform_prop",
"AddObjectHelper",
)
import bpy
import mathutils
from bpy.props import (BoolProperty, FloatVectorProperty)
from bpy.props import BoolProperty, FloatVectorProperty
def add_object_align_init(context, operator):