Skip to content

Commit

Permalink
Update thing
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh Dadhich committed Aug 8, 2024
1 parent 64079b6 commit b911c82
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/start/food/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,11 @@ def build_managed_loc(soup):

# FIXME: workaround for UCen Bistro / UCen Cafe
cafe = "University Center Cafe"
locs[cafe] = locs.pop("UCen Coffee Bar")
locs[cafe]["name"] = cafe
try:
locs[cafe] = locs.pop("UCen Coffee Bar")
locs[cafe]["name"] = cafe
except:
pass
return locs


Expand Down

0 comments on commit b911c82

Please sign in to comment.