Report which week a meeting occurs.

Change-Id: I1afcb7e657dd898279aa80c325a3adbfa5f40248
This commit is contained in:
rbowen 2021-07-06 12:25:59 -04:00 committed by Rich Bowen
parent b413607a97
commit 0c6b2e9344
1 changed files with 4 additions and 3 deletions

View File

@ -223,9 +223,6 @@ class MonthlyRecurrence(_Recurrence):
'byday': '{}{}'.format(self._week, self._day[:2].upper()),
}
def __str__(self):
return "Monthly"
_ORDINALS = [
'first',
'second',
@ -238,6 +235,10 @@ class MonthlyRecurrence(_Recurrence):
def day_specifier(self):
return 'the {}'.format(self._ORDINALS[self._week - 1])
def __str__(self):
return "Monthly, in the " +
format(self._ORDINALS[self._week - 1]) + ' week,'
supported_recurrences = {
'weekly': WeeklyRecurrence(),