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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-10-17 17:54:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-17 17:54:47 +0400
commitcc1ed7cbc503508c20a003b19ea569b575d328ed (patch)
treed8a377fb5929679e11456566816617b3c78f4869
parent2dc6ca49b32ef2a8d73855b1f10a841792b94216 (diff)
fix/update for credits script and bad formatting in sphinx docs.
-rw-r--r--doc/python_api/rst/info_best_practice.rst4
1 files 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...