[extractor] Standardize _live_title
This commit is contained in:
parent
46383212b3
commit
39ca3b5c7f
67 changed files with 68 additions and 94 deletions
|
|
@ -44,11 +44,11 @@ class VyboryMosIE(InfoExtractor):
|
|||
info = self._download_json(
|
||||
'http://vybory.mos.ru/json/voting_stations/%s/%s.json'
|
||||
% (compat_str(station_id)[:3], station_id),
|
||||
station_id, 'Downloading station JSON', fatal=False)
|
||||
station_id, 'Downloading station JSON', fatal=False) or {}
|
||||
|
||||
return {
|
||||
'id': station_id,
|
||||
'title': self._live_title(info['name'] if info else station_id),
|
||||
'title': info.get('name') or station_id,
|
||||
'description': info.get('address'),
|
||||
'is_live': True,
|
||||
'formats': formats,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue