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:
Diffstat (limited to 'doc/python_api/rst/info_quickstart.rst')
-rw-r--r--doc/python_api/rst/info_quickstart.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst
index 7a899e040a6..bbedb3f4fd4 100644
--- a/doc/python_api/rst/info_quickstart.rst
+++ b/doc/python_api/rst/info_quickstart.rst
@@ -196,9 +196,9 @@ Example:
# dictionaries can be assigned as long as they only use basic types.
group = bpy.data.groups.new("MyTestGroup")
- group["GameSettings"] = {"foo": 10, "bar": "spam", "baz": {}}
+ group["MySettings"] = {"foo": 10, "bar": "spam", "baz": {}}
- del group["GameSettings"]
+ del group["MySettings"]
Note that these properties can only be assigned basic Python types.