diff options
Diffstat (limited to 'generate-schedule.py')
-rwxr-xr-x | generate-schedule.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generate-schedule.py b/generate-schedule.py index 87ce9d4..a9f8439 100755 --- a/generate-schedule.py +++ b/generate-schedule.py @@ -132,7 +132,7 @@ schedule = [ # Event(jefferson, date(2024, 11, 6), info='Elevator in lobby to third floor. Book Swap and <a href="https://booksthroughbarsnyc.org/donate/donate-books/">NYC Books Through Bars</a> Book Drive.', special=True), # Event(nook, date(2024, 11, 9)), # Event(mccarren, date(2024, 11, 11)), - Event(abraco, date(2024, 11, 13), changed=True, info='Wednesday Jefferson Market Library Quiet Reading moved for this week.'), + # Event(abraco, date(2024, 11, 13), changed=True, info='Wednesday Jefferson Market Library Quiet Reading moved for this week.'), Event(bushwicklibrary, date(2024, 11, 14), time='6p', special=True), Event(nook, date(2024, 11, 16)), Event(wyckoffbondgarden, date(2024, 11, 16), time='12p', special=True), @@ -144,8 +144,8 @@ schedule = [ Event(mccarren, date(2024, 11, 25)), Event(jefferson, date(2024, 11, 27), info='<strong>Cancelled due to Thanksgiving.</strong>', cancelled=True), Event(nook, date(2024, 11, 30)), - # Event(bookclub, date(2024, 12, 1)), - # Event(liz, date(2024, 12, 3)), + Event(bookclub, date(2024, 12, 1)), + Event(liz, date(2024, 12, 3)), ] # maybe autosort it and sort code by event? with open('index.base') as base: |