Merge "look for liaison using team.lower()"

This commit is contained in:
Zuul 2018-01-15 17:26:27 +00:00 committed by Gerrit Code Review
commit f2883acbd4

View File

@ -86,7 +86,7 @@ class Team(object):
if self._liaison_data is None: if self._liaison_data is None:
# Only hit the wiki page one time. # Only hit the wiki page one time.
Team._liaison_data = wiki.get_liaison_data() Team._liaison_data = wiki.get_liaison_data()
team_liaison = self._liaison_data.get(self.name, {}) team_liaison = self._liaison_data.get(self.name.lower(), {})
return (team_liaison.get('Liaison'), return (team_liaison.get('Liaison'),
team_liaison.get('IRC Handle')) team_liaison.get('IRC Handle'))