-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
When trying to download data for an event with no event_description, the program hangs
recommend changing this part of pyweed_utils
def get_event_description(event):
return str(event.event_descriptions[0].text).title()
to something like
def get_event_description(event):
if event.event_descriptions:
return str(event.event_descriptions[0].text).title()
else:
return 'no event description'
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels