Skip to content

Commit

Permalink
make sure all yaml uses json.dumps
Browse files Browse the repository at this point in the history
  • Loading branch information
reinhrst committed Oct 31, 2023
1 parent 208df5c commit 70c0ff0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ async def on_ready():
- html
- calendar
discord_event:
id: {event.id}
link: {event.url}
interested: {event.user_count}
organizer: {event.creator}
location: {event.location}
featureImage: {event.cover_image}
id: {json.dumps(event.id)}
link: {json.dumps(event.url)}
interested: {json.dumps(event.user_count)}
organizer: {json.dumps(event.creator)}
location: {json.dumps(event.location)}
featureImage: {json.dumps(event.cover_image)}
eventInfo:
dates:
extra:
Expand Down

0 comments on commit 70c0ff0

Please sign in to comment.