contentful.py
contentful.py copied to clipboard
Incorrect documentation for sync
In README.rst, the Synchronization
section has this code sample:
sync = sync.next(client) # equivalent to client.sync(sync_token=sync.next_sync_token)
The example code given in the comment doesn't work. It needs to be:
client.sync({'sync_token': sync.next_sync_token})
Thanks @moreindirection!
Very helpful information for me:)