From cc1ed7cbc503508c20a003b19ea569b575d328ed Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 17 Oct 2011 13:54:47 +0000 Subject: [PATCH] fix/update for credits script and bad formatting in sphinx docs. --- doc/python_api/rst/info_best_practice.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/python_api/rst/info_best_practice.rst b/doc/python_api/rst/info_best_practice.rst index 2e5b5bd285c..180a9fd1aa3 100644 --- a/doc/python_api/rst/info_best_practice.rst +++ b/doc/python_api/rst/info_best_practice.rst @@ -121,8 +121,8 @@ If you have a list that you want to add onto another list, rather then... .. code-block:: python -for l in some_list: - my_list.append(l) + for l in some_list: + my_list.append(l) Use...