Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove accidental backtick
  • Loading branch information
StanFromIreland committed Mar 16, 2025
commit cea6cf3bc7ac6630e0e08ee0e31ff968f1cd149d
2 changes: 1 addition & 1 deletion Modules/_datetimemodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ check_date_args(int year, int month, int day)
int dim = days_in_month(year, month);
if (day < 1 || day > dim) {
PyErr_Format(PyExc_ValueError,
`"day %i must be in range 1..%d for month %i in year %i",
"day %i must be in range 1..%d for month %i in year %i",
day, dim, month, year);
return -1;
}
Expand Down