Fix tuple prepend

This commit is contained in:
Odd Stråbø 2021-02-23 00:18:02 +01:00
parent 2bade17e7f
commit 61fcfe3b5e
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ class FullSync(object):
res = self.get_library(sync_id)
if res is not None:
# FIXME: This is a hack. Fix plz.
libraries = [(sync_id,), res]
libraries = [(sync_id,) + res]
else:
libraries = []