Report which week a meeting occurs.

Change-Id: I1afcb7e657dd898279aa80c325a3adbfa5f40248
This commit is contained in:
rbowen 2021-07-06 12:25:59 -04:00
parent 90ddef2d8c
commit cb1ca40c1e
1 changed files with 3 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,9 @@ 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(),