Skip to content

Commit b173a6d

Browse files
committed
add correct spaces
1 parent bf7ae43 commit b173a6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src_c/font.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -486,14 +486,14 @@ font_setter_align(PyObject *self, PyObject *value, void *closure)
486486
if (val == -1 && PyErr_Occurred()) {
487487
PyErr_SetString(
488488
PyExc_TypeError,
489-
"font.align must be an integer."
490-
"Must correspond with FONT_LEFT, FONT_CENTER, or FONT_RIGHT");
489+
"font.align must be an integer. "
490+
"Must correspond with FONT_LEFT, FONT_CENTER, or FONT_RIGHT.");
491491
return -1;
492492
}
493493

494494
if (val < 0 || val > 2) {
495495
PyErr_SetString(pgExc_SDLError,
496-
"font.align must be FONT_LEFT, FONT_CENTER, or"
496+
"font.align must be FONT_LEFT, FONT_CENTER, or "
497497
"FONT_RIGHT.");
498498
return -1;
499499
}

0 commit comments

Comments
 (0)