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>2006-03-22 02:59:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-03-22 02:59:52 +0300
commita837e1e8c06114f527e3809a90b790890e4d1d7e (patch)
treea04af9f89f17a521d718860eda8aa45159a3ebe8 /source/blender/python/api2_2x/Sys.c
parente57ce8489b7fa14f1dd8bd3eebb8e71e92ae9705 (diff)
oops, typo
Diffstat (limited to 'source/blender/python/api2_2x/Sys.c')
-rw-r--r--source/blender/python/api2_2x/Sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Sys.c b/source/blender/python/api2_2x/Sys.c
index b333952a4d0..615268504f1 100644
--- a/source/blender/python/api2_2x/Sys.c
+++ b/source/blender/python/api2_2x/Sys.c
@@ -416,7 +416,7 @@ static PyObject *M_sys_expandpath( PyObject * self, PyObject * args )
"expected string argument" );
if (!G.scene)
return EXPP_ReturnPyObjError( PyExc_RuntimeError,
- "error, load a blend before expending the path." )
+ "error, load a blend before expending the path." );
BLI_strncpy(expanded, path, FILE_MAXDIR + FILE_MAXFILE);
BLI_convertstringcode(expanded, G.sce, G.scene->r.cfra);