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

Commit b806b39

Browse files
committed
Merge pull request #31 from colinnuk/master
Fix _stop_poll_on_thread function
2 parents 4f0b8f5 + 8aba0b5 commit b806b39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/onedrivesdk/async_operation_monitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _start_poll_on_thread(self):
6262

6363
def _stop_poll_on_thread(self):
6464
"""Stops polling on a seperate thread"""
65-
self.completed = True
65+
self._completed = True
6666

6767
def _polling_loop(self):
6868
"""This method to run within a new thread (as to not block).

0 commit comments

Comments
 (0)