Skip to content

Commit 03e1360

Browse files
author
Jason McFarland
committed
bugfix inside feed synchronize
1 parent 743670e commit 03e1360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cbapi/response/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def create_action(self):
369369
def synchronize(self, full_sync=True):
370370
try:
371371
self._cb.post_object("/api/v1/feed/{0}/synchronize".format(self._model_unique_id),
372-
data={"full_sync": full_sync})
372+
{"full_sync": full_sync})
373373
except ServerError as e:
374374
if e.error_code == 409:
375375
raise ApiError("Cannot synchronize feed {0}: feed is disabled".format(self._model_unique_id))

0 commit comments

Comments
 (0)