minor changes

- stub from last commit was incorrect (copied old docs)
- decimator was making copy of quadric for no reason.
- correct typo
This commit is contained in:
Campbell Barton
2012-10-17 16:10:04 +00:00
parent f83ae34e03
commit 0c2a1500f2
4 changed files with 4 additions and 4 deletions

View File

@@ -7,5 +7,5 @@ import os
# Use your own script name here:
filename = "my_script.py"
filepath = os.path.join(os.path.basename(bpy.data.filepath), filename)
filepath = os.path.join(os.path.dirname(bpy.data.filepath), filename)
exec(compile(open(filepath).read(), filepath, 'exec'))