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:
authorBrecht Van Lommel <brecht@blender.org>2020-06-25 15:51:55 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-06-25 16:39:10 +0300
commit2b9ac1de491142508212471fb8e1d2cbdd655914 (patch)
treeb008370839b9a16f436a9061e9d6b78299b66f06 /source/blender/makesrna/intern/rna_main.c
parentd0693c160ae49417d0afd63c66caa4c58e2cec9b (diff)
Fix incorrect Python API description for bpy.data.version
Ref T76058
Diffstat (limited to 'source/blender/makesrna/intern/rna_main.c')
-rw-r--r--source/blender/makesrna/intern/rna_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_main.c b/source/blender/makesrna/intern/rna_main.c
index 9e0194f8a1b..1670e08325f 100644
--- a/source/blender/makesrna/intern/rna_main.c
+++ b/source/blender/makesrna/intern/rna_main.c
@@ -445,7 +445,7 @@ void RNA_def_main(BlenderRNA *brna)
0,
INT_MAX,
"Version",
- "Version of Blender the .blend was saved with",
+ "File format version the .blend file was saved with",
0,
INT_MAX);
RNA_def_property_int_funcs(prop, "rna_Main_version_get", NULL, NULL);