Skip to content

Commit

Permalink
Merge pull request googleapis#201 from frennkie/patch-1
Browse files Browse the repository at this point in the history
fix broken URL for accepting an event
  • Loading branch information
Alejandro Casanovas committed Mar 2, 2019
2 parents f618da7 + 5dc4ad5 commit 8a864d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion O365/calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -1388,7 +1388,7 @@ def accept_event(self, comment=None, *, send_response=True,

url = self.build_url(
self._endpoints.get('event').format(id=self.object_id))
url = url + '/tentativelyAccept' if tentatively else '/accept'
url = url + '/tentativelyAccept' if tentatively else url + '/accept'

data = {}
if comment and isinstance(comment, str):
Expand Down

0 comments on commit 8a864d1

Please sign in to comment.