Fix typo in "previous year" on the calendar

This commit is contained in:
Martin Pépin 2018-01-05 15:13:13 +01:00
parent cd37e16a6c
commit cd149f1052

View file

@ -45,7 +45,7 @@ def calendar(request, pYear, pMonth):
lPreviousMonth = lMonth - 1
if lPreviousMonth == 0:
lPreviousMonth = 12
lPreviousYear - 1
lPreviousYear -= 1
lNextYear = lYear
lNextMonth = lMonth + 1
if lNextMonth == 13: