From 619280fdf3649b209369507301eb50726c903cf5 Mon Sep 17 00:00:00 2001 From: Toben Archer Date: Fri, 7 Jul 2017 11:12:32 -0500 Subject: [PATCH] Changed a null to None I put in the wrong thing. derp. --- O365/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/O365/event.py b/O365/event.py index 308760a58737..88750cf962f6 100644 --- a/O365/event.py +++ b/O365/event.py @@ -353,7 +353,7 @@ def setLocation(self,loc): you send into a string and set that as the display name. ''' if 'Location' not in self.json: - self.json['Location'] = {"Address":null} + self.json['Location'] = {"Address":None} if isinstance(loc,dict): self.json['Location'] = loc