Skip to content

Commit

Permalink
Update compile_schedule.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremymanning authored Jul 18, 2024
1 parent bb7545c commit e0e4d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compile_schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def remove_first_and_last_lines(lines, n, m):
event_content = event_content = remove_first_and_last_lines(event_content, 2, 2)

# Replace placeholders with actual values
event_content = ''.join(event_content).replace('{DATE}', row['Date']).replace('{TIME}', row['Time']).replace('{LOCATION}', row['Location'])
event_content = ''.join(event_content).replace('{DATE}', row['Date']).replace('{TIME}', row['Time']).replace('{LOCATION}', row['Location'] + '\n\n')

# Adjust formatting for Date, Time, Location
event_content = event_content.replace('**Date:**', '\n**Date:**')
Expand Down

0 comments on commit e0e4d9a

Please sign in to comment.