Skip to content

Commit b911c82

Browse files
author
Harsh Dadhich
committed
Update thing
1 parent 64079b6 commit b911c82

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/start/food/__init__.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,11 @@ def build_managed_loc(soup):
5656

5757
# FIXME: workaround for UCen Bistro / UCen Cafe
5858
cafe = "University Center Cafe"
59-
locs[cafe] = locs.pop("UCen Coffee Bar")
60-
locs[cafe]["name"] = cafe
59+
try:
60+
locs[cafe] = locs.pop("UCen Coffee Bar")
61+
locs[cafe]["name"] = cafe
62+
except:
63+
pass
6164
return locs
6265

6366

0 commit comments

Comments
 (0)