main2
Bob Mottram 2019-10-11 19:48:46 +01:00
parent ffc949406d
commit e378e83a8a
1 changed files with 18 additions and 15 deletions

View File

@ -2784,11 +2784,14 @@ def getCalendarEvents(baseDir: str,nickname: str,domain: str,year: int,monthNumb
postEvent=[]
dayOfMonth=None
for tag in postJsonObject['object']['tag']:
if tag.get('type'):
if tag['type']=='Event' or tag['type']=='Place':
if not tag.get('type'):
continue
if tag['type']!='Event' and tag['type']!='Place':
continue
if tag['type']=='Event':
# tag is an event
if tag.get('startTime'):
if not tag.get('startTime'):
continue
eventTime= \
datetime.strptime(tag['startTime'], \
"%Y-%m-%dT%H:%M:%S%z")