[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26308] trunk/blender/source/blender/ python/intern/bpy_rna.c: Typo in error string

Martin Poirier theeth at yahoo.com
Tue Jan 26 18:37:53 CET 2010


Revision: 26308
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26308
Author:   theeth
Date:     2010-01-26 18:37:44 +0100 (Tue, 26 Jan 2010)

Log Message:
-----------
Typo in error string

Modified Paths:
--------------
    trunk/blender/source/blender/python/intern/bpy_rna.c

Modified: trunk/blender/source/blender/python/intern/bpy_rna.c
===================================================================
--- trunk/blender/source/blender/python/intern/bpy_rna.c	2010-01-26 17:14:13 UTC (rev 26307)
+++ trunk/blender/source/blender/python/intern/bpy_rna.c	2010-01-26 17:37:44 UTC (rev 26308)
@@ -789,7 +789,7 @@
 				PyErr_Format(PyExc_TypeError, "%.200s expected a %.200s type", error_prefix, RNA_struct_identifier(ptype));
 				return -1;
 			} else if((flag & PROP_NEVER_NULL) && value == Py_None) {
-				PyErr_Format(PyExc_TypeError, "%.200s does not suppory a 'None' assignment %.200s type", error_prefix, RNA_struct_identifier(ptype));
+				PyErr_Format(PyExc_TypeError, "%.200s does not support a 'None' assignment %.200s type", error_prefix, RNA_struct_identifier(ptype));
 				return -1;
 			} else {
 				BPy_StructRNA *param= (BPy_StructRNA*)value;





More information about the Bf-blender-cvs mailing list