-
Notifications
You must be signed in to change notification settings - Fork 93
Description
I was using the latest official release (0.5) which is available with pip and everything was working as expected.
Then I needed to list events of delegate calendar. I monkey patched the schema and it worked on first try (hurray !).
So I decided to do things cleanly, make a fork, create a fix and a merge request. But then everything stopped working. After removing my code I realized that it was not my patch which broke pyexchange..
I started trying with every commit between the latest release (@a596a23) and the @Head and it turns out that the commit just after the release commit (@66f0824) is the last time the calendar list_event feature worked..
Every commit after, the feature is broken in one way or the other.. For example with commit @5960c66:
# python fetch.py
Traceback (most recent call last):
File "fetch.py", line 103, in <module>
print fetch()
File "fetch.py", line 75, in fetch
calendar_list = service.calendar().list_events(
AttributeError: 'Exchange2010CalendarService' object has no attribute 'list_events'With later commit the Exchange server start returning 500 internal errors and with more recent commits, it always returns an empty list..
I'm trying to figure out what changed, but it seems there was a lot of refactoring in the last commits..
Any clue of what might have broken the list_event feature ?