From 78968a0fc9851645db4466b918f9d96fcb70f92a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 2 Oct 2011 23:53:41 +0000 Subject: fix for mistake in api changelog script with function names. --- doc/python_api/rst/change_log.rst | 4 ++-- doc/python_api/sphinx_changelog_gen.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/python_api/rst/change_log.rst b/doc/python_api/rst/change_log.rst index 8b2a74fc075..6ab2e98d6bd 100644 --- a/doc/python_api/rst/change_log.rst +++ b/doc/python_api/rst/change_log.rst @@ -919,7 +919,7 @@ bpy.types.Scene Function Arguments ^^^^^^^^^^^^^^^^^^ -* :class:`bpy.types.Scene.fh_damping` (filepath, selected), *was (filepath)* +* :class:`bpy.types.Scene.collada_export` (filepath, selected), *was (filepath)* bpy.types.MultiresModifier -------------------------- @@ -985,7 +985,7 @@ bpy.types.IDMaterials Function Arguments ^^^^^^^^^^^^^^^^^^ -* :class:`bpy.types.IDMaterials.ndof_rotate_speed` (index, update_data), *was (index)* +* :class:`bpy.types.IDMaterials.pop` (index, update_data), *was (index)* bpy.types.Material ------------------ diff --git a/doc/python_api/sphinx_changelog_gen.py b/doc/python_api/sphinx_changelog_gen.py index bc1619ba7bb..3ded1035123 100644 --- a/doc/python_api/sphinx_changelog_gen.py +++ b/doc/python_api/sphinx_changelog_gen.py @@ -302,7 +302,7 @@ def api_changelog(api_from, api_to, api_out): for func_id, args_old, args_new in func_args: args_new = ", ".join(args_new) args_old = ", ".join(args_old) - fw("* :class:`%s.%s.%s` (%s), *was (%s)*\n" % (mod_id, class_name, prop_id, args_new, args_old)) + fw("* :class:`%s.%s.%s` (%s), *was (%s)*\n" % (mod_id, class_name, func_id, args_new, args_old)) fw("\n") fout.close() -- cgit v1.2.3