fix blacklisting SAU as a collectivity

This commit is contained in:
Frédéric Péters 2018-09-14 14:08:21 +02:00
parent da02b8a019
commit 2c19958dc6
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ def get_gnm_collectivities():
matching_hobo = settings.KNOWN_SERVICES['hobo'].get(key.split('_portal')[0][1:])
if not matching_hobo:
continue
if matching_hobo['title'] in ('SAU'): # blacklist
if matching_hobo['title'] in ('SAU',): # blacklist
continue
service = settings.KNOWN_SERVICES['combo'][key]
collectivities.append({'url': service.get('url'), 'label': matching_hobo['title']})