8000 Merge pull request #201 from frennkie/patch-1 · urshala/google-cloud-python@8a864d1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8a864d1

Browse files
author
Alejandro Casanovas
authored
Merge pull request googleapis#201 from frennkie/patch-1
fix broken URL for accepting an event
2 parents f618da7 + 5dc4ad5 commit 8a864d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

O365/calendar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ def accept_event(self, comment=None, *, send_response=True,
13881388

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

13931393
data = {}
13941394
if comment and isinstance(comment, str):

0 commit comments

Comments
 (0)
0