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:
authorKent Mein <mein@cs.umn.edu>2006-02-13 04:25:03 +0300
committerKent Mein <mein@cs.umn.edu>2006-02-13 04:25:03 +0300
commit4c966a31419313e88e91d60ea6a6356df27dc9b1 (patch)
tree5c5471273ca3f8cb4f2310599bfed0c7755dbef7 /source/blender/python/api2_2x/Text3d.c
parent9809c7807b13cd5d017beadb7651c637096e2fb7 (diff)
assignment typo: had == instead of =
Reported by jkw on the forums. source/blender/python/api2_2x/Text3d.c Kent
Diffstat (limited to 'source/blender/python/api2_2x/Text3d.c')
-rw-r--r--source/blender/python/api2_2x/Text3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Text3d.c b/source/blender/python/api2_2x/Text3d.c
index 0561245b7c4..5fbaf552026 100644
--- a/source/blender/python/api2_2x/Text3d.c
+++ b/source/blender/python/api2_2x/Text3d.c
@@ -973,7 +973,7 @@ PyObject *M_Text3d_LoadFont( PyObject * self, PyObject * args )
if( file || !strcmp (fontfile, "<builtin>") ) {
load_vfont( fontfile );
if(file) fclose( file );
- if( (vf == exist_vfont( fontfile )) )
+ if( (vf = exist_vfont( fontfile )) )
return Font_CreatePyObject( vf );
return EXPP_incr_ret( Py_None );
}