Fix TypeError
This commit is contained in:
parent
c10afd1920
commit
0dfcebbee3
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class FullSync(backgroundthread.KillableThread, common.libsync_mixin):
|
||||||
Removes all the items that have NOT been updated (last_sync timestamp)
|
Removes all the items that have NOT been updated (last_sync timestamp)
|
||||||
is different
|
is different
|
||||||
"""
|
"""
|
||||||
with self.context() as c:
|
with self.context(self.last_sync) as c:
|
||||||
for plex_id in self.plex_db.plex_id_by_last_sync(self.plex_type,
|
for plex_id in self.plex_db.plex_id_by_last_sync(self.plex_type,
|
||||||
self.last_sync):
|
self.last_sync):
|
||||||
if self.isCanceled():
|
if self.isCanceled():
|
||||||
|
|
Loading…
Reference in a new issue