Skip to content

Commit

Permalink
increased reservation limit from 20 to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdoman committed Feb 21, 2019
1 parent 7dddb95 commit b874233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion penn/studyspaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def get_reservations(self, email, date):
:type email: str
"""
try:
resp = self._request("GET", "/1.1/space/bookings?email={}&date={}".format(email, date))
resp = self._request("GET", "/1.1/space/bookings?email={}&date={}&limit=100".format(email, date))
except resp.exceptions.HTTPError as error:
raise APIError("Server Error: {}".format(error))
return resp.json()
Expand Down

0 comments on commit b874233

Please sign in to comment.