|
|
@ -77,7 +77,7 @@ def sync(calendar_url: str, event_collection_path: str) -> None: |
|
|
|
if len(location_info) == 2: |
|
|
|
event_content = event_content.replace('<address>', location_info[1]) |
|
|
|
else: |
|
|
|
event_content = event.content.replace('<address>', location_info[0]) |
|
|
|
event_content = event_content.replace('<address>', location_info[0]) |
|
|
|
|
|
|
|
event_filename = begin.date().isoformat() + '-' + event.name.replace(' ', '_') + '.markdown' |
|
|
|
with open(event_collection_path + event_filename, 'w', encoding='utf-8', newline='\n') as event_file: |
|
|
|