Skip to content

Commit 10fbc4b

Browse files
author
Erlend E. Aasland
committed
Don't capitalize error string
1 parent 60d94f9 commit 10fbc4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_sqlite/connection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ _pysqlite_set_result(sqlite3_context* context, PyObject* py_val)
526526
}
527527
if (sz > INT_MAX) {
528528
PyErr_SetString(PyExc_OverflowError,
529-
"String is longer than INT_MAX bytes");
529+
"string is longer than INT_MAX bytes");
530530
return -1;
531531
}
532532
sqlite3_result_text(context, str, (int)sz, SQLITE_TRANSIENT);

0 commit comments

Comments
 (0)