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:
Thomas Dinges
2013-04-07 15:09:06 +00:00
parent c0ab8a15c3
commit 858ff6b696
28 changed files with 34 additions and 34 deletions

View File

@@ -140,7 +140,7 @@ def island2Edge(island):
else:
i1= vIdx; i2= vIdx-1
try: edges[ f_uvkey[i1], f_uvkey[i2] ] *= 0 # sets any edge with more then 1 user to 0 are not returned.
try: edges[ f_uvkey[i1], f_uvkey[i2] ] *= 0 # sets any edge with more than 1 user to 0 are not returned.
except: edges[ f_uvkey[i1], f_uvkey[i2] ] = (f.uv[i1] - f.uv[i2]).length,
# If 2 are the same then they will be together, but full [a,b] order is not correct.