Fix for [#34898] Typo in error message of mathutils.Vector

* Also fixed some more cases of "more then" -> "more than".
This commit is contained in:
2013-04-07 15:09:06 +00:00
parent c0ab8a15c3
commit 858ff6b696
28 changed files with 34 additions and 34 deletions

View File

@@ -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