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:
-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...