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:
authorThomas Dinges <blender@dingto.org>2013-04-07 19:09:06 +0400
committerThomas Dinges <blender@dingto.org>2013-04-07 19:09:06 +0400
commit858ff6b69626bf8385debe06436b2f2abba56f45 (patch)
treef32c8f31043e57a0f64afd80d98ba06fbd8c51cc /source/gameengine/Ketsji/KX_PythonInit.cpp
parentc0ab8a15c344afdc513513444f0969766ea50db9 (diff)
Fix for [#34898] Typo in error message of mathutils.Vector
* Also fixed some more cases of "more then" -> "more than".
Diffstat (limited to 'source/gameengine/Ketsji/KX_PythonInit.cpp')
-rw-r--r--source/gameengine/Ketsji/KX_PythonInit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/KX_PythonInit.cpp b/source/gameengine/Ketsji/KX_PythonInit.cpp
index 06abc755a9a..0bdf08bc25f 100644
--- a/source/gameengine/Ketsji/KX_PythonInit.cpp
+++ b/source/gameengine/Ketsji/KX_PythonInit.cpp
@@ -1892,7 +1892,7 @@ static struct _inittab bge_internal_modules[] = {
PyObject *initGamePlayerPythonScripting(const STR_String& progname, TPythonSecurityLevel level, Main *maggie, int argc, char** argv)
{
/* Yet another gotcha in the py api
- * Cant run PySys_SetArgv more then once because this adds the
+ * Cant run PySys_SetArgv more than once because this adds the
* binary dir to the sys.path each time.
* Id have thought python being totally restarted would make this ok but
* somehow it remembers the sys.path - Campbell