my django project is throwing an value error

Viewed 19

my django project is throwing a value error the format of the date is correct but its showing that it does not match the error is :

time data 'Sept. 19, 2022' does not match format '%b. %d, %Y'

can anyone help me with this ?

1 Answers

just change sept to sep because DateTime uses normal months' names.

Related