Update count_slot_usage for new recurrences

The count_slot_usage.py tool was not updated when the
monthly and quadweekly recurrences were added. Do that
now.

Change-Id: I978726c13a910549b2f81f4b21c28ca05ba09c26
This commit is contained in:
Thierry Carrez 2018-12-17 17:37:27 +01:00
parent 3ae7ecd893
commit 66c5a3af6b
1 changed files with 3 additions and 1 deletions

View File

@ -32,7 +32,9 @@ BASE_DIR = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), ".."))
EAVESDROP = 'eavesdrop.openstack.org'
MEETINGS_PATH = os.path.join(BASE_DIR, 'meetings')
WEEKDAYS = list(calendar.day_name)
WEEK_COUNTS = {'weekly': 2, 'biweekly-even': 1, 'biweekly-odd': 1, 'adhoc': 0}
WEEK_COUNTS = {'first-thursday': 2, 'first-friday': 2, 'weekly': 2,
'biweekly-even': 1, 'biweekly-odd': 1,
'quadweekly': 1, 'quadweekly-alternate': 1, 'adhoc': 0}
CHANNELS = ['openstack-meeting', 'openstack-meeting-alt',
'openstack-meeting-3', 'openstack-meeting-4',
'openstack-meeting-5']