Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 67326b6

Browse files
authored
Merge pull request #204 from cloudant/194-changes-example
Corrected changes example doc
2 parents c28d0d0 + a6b338e commit 67326b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cloudant/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ def changes(self, raw_data=False, **kwargs):
447447
changes = db.changes(feed='continuous', since='now', descending=True)
448448
for change in changes:
449449
if some_condition:
450-
db_updates.stop()
450+
changes.stop()
451451
print(change)
452452
453453
:param bool raw_data: If set to True then the raw response data will be

0 commit comments

Comments
 (0)