Skip to content

Commit

Permalink
Merge pull request #35 from OpenPecha/feat/weekly_parasha_display_issue
Browse files Browse the repository at this point in the history
get_method_removed
  • Loading branch information
Lungsangg authored Feb 9, 2024
2 parents 6a702c9 + b136e0a commit c2af52c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sefaria/helper/community_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def get_featured_item(data, date):
def get_todays_data(data, date):
todays_data = None
for day_data in data:
if day_data.get("Date") == date:
if day_data["Date"] == date:
todays_data = day_data
break
return todays_data
Expand Down

0 comments on commit c2af52c

Please sign in to comment.