]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typo
authorGaëtan de Menten <gdementen@gmail.com>
Wed, 24 Feb 2010 17:04:11 +0000 (17:04 +0000)
committerGaëtan de Menten <gdementen@gmail.com>
Wed, 24 Feb 2010 17:04:11 +0000 (17:04 +0000)
lib/sqlalchemy/cextension/resultproxy.c

index 048d74d74b2a44e8ad413931a7abca3a204d9620..b530b65f7eac3a2c3022d432c360b01ccb550dd6 100644 (file)
@@ -154,7 +154,7 @@ BaseRowProxy_processvalues(PyObject *values, PyObject *processors, int astuple)
     num_processors = Py_SIZE(processors);
     if (num_values != num_processors) {
         PyErr_SetString(PyExc_RuntimeError,
-            "number of values in row difer from number of column processors");
+            "number of values in row differ from number of column processors");
         return NULL;
     }