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:
authorDaniel Salazar <zanqdo@gmail.com>2010-02-11 05:03:18 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-02-11 05:03:18 +0300
commit15ef07d6849f2d92d006f1e52c69142729b200f8 (patch)
treea26000ce8f59983cae271b85b66fc088e0f37120 /source/blender/python/intern
parent78faeb73b81d9eb6fe1f02e6fb6a0585a4ecf021 (diff)
More tooltip editing
Diffstat (limited to 'source/blender/python/intern')
-rw-r--r--source/blender/python/intern/bpy_app.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c
index 440db76aafe..5bd0cc89f25 100644
--- a/source/blender/python/intern/bpy_app.c
+++ b/source/blender/python/intern/bpy_app.c
@@ -49,16 +49,16 @@ static PyTypeObject BlenderAppType;
static PyStructSequence_Field app_info_fields[] = {
{"version", "The Blender version as a tuple of 3 numbers. eg. (2, 50, 11)"},
- {"version_string", "The Blender version formatted as a string."},
+ {"version_string", "The Blender version formatted as a string"},
{"home", "The blender home directory, normally matching $HOME"},
- {"binary_path", "The location of blenders executable, useful for utilities that spawn new instances."},
- {"debug", "Boolean, set when blender is running in debug mode (started with -d)."},
+ {"binary_path", "The location of blenders executable, useful for utilities that spawn new instances"},
+ {"debug", "Boolean, set when blender is running in debug mode (started with -d)"},
/* buildinfo */
- {"build_date", "The date this blender instance was built.."},
- {"build_time", "The time this blender instance was built."},
- {"build_revision", "The subversion revision this blender instance was built with."},
- {"build_platform", "The platform this blender instance was built for."},
+ {"build_date", "The date this blender instance was built"},
+ {"build_time", "The time this blender instance was built"},
+ {"build_revision", "The subversion revision this blender instance was built with"},
+ {"build_platform", "The platform this blender instance was built for"},
{"build_type", "The type of build (Release, Debug)"},
{0}
};