forked from LBRYCommunity/lbry-sdk
pylint fix
This commit is contained in:
parent
c7b254ec88
commit
1bf4048c46
1 changed files with 2 additions and 1 deletions
|
@ -1499,7 +1499,8 @@ class Daemon(AuthJSONRPCServer):
|
||||||
|
|
||||||
if not resolved or 'value' not in resolved:
|
if not resolved or 'value' not in resolved:
|
||||||
if 'claim' not in resolved:
|
if 'claim' not in resolved:
|
||||||
raise Exception("Failed to resolve stream at lbry://{}".format(uri.replace("lbry://", "")))
|
raise Exception(
|
||||||
|
"Failed to resolve stream at lbry://{}".format(uri.replace("lbry://", "")))
|
||||||
else:
|
else:
|
||||||
resolved = resolved['claim']
|
resolved = resolved['claim']
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue