Merge pull request #82 from satetsu888/master

fix reminder post function for python3
This commit is contained in:
Adam Coddington 2016-06-20 20:40:36 -07:00 committed by GitHub
commit 1c80389305

View file

@ -104,7 +104,7 @@ class RemindersService(object):
"createdDateExtended": int(time.time()*1000),
"guid": str(uuid.uuid4())
},
"ClientState": {"Collections": self.collections.values()}
"ClientState": {"Collections": list(self.collections.values())}
}),
params=params_reminders)
return req.ok