Merge pull request #82 from satetsu888/master
fix reminder post function for python3
This commit is contained in:
commit
1c80389305
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue