forked from LBRYCommunity/lbry-sdk
fixing tests to work with asyncio daemon
This commit is contained in:
parent
7f838d3a31
commit
4bb8129bb7
25 changed files with 296 additions and 336 deletions
lbrynet/blob
|
@ -54,7 +54,7 @@ class EncryptedFileManager:
|
|||
|
||||
def change_lbry_file_status(self, lbry_file, status):
|
||||
log.debug("Changing status of %s to %s", lbry_file.stream_hash, status)
|
||||
return self.storage.change_file_status(lbry_file.rowid, status)
|
||||
return f2d(self.storage.change_file_status(lbry_file.rowid, status))
|
||||
|
||||
def get_lbry_file_status_reports(self):
|
||||
ds = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue