From e1cdbdc91d6cfaa1e7e63a95067a65e7f85adfcf Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 14 Nov 2016 14:02:19 -0500 Subject: [PATCH] fix coveralls error --- lbrynet/core/Wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py index 9a0adc56d..47ae0f384 100644 --- a/lbrynet/core/Wallet.py +++ b/lbrynet/core/Wallet.py @@ -378,7 +378,7 @@ class Wallet(object): def _get_my_unspent_claim(claims): for claim in claims: - if claim['name'] == name and not claim['is spent'] and not claim.get('supported_claimid',False): + if claim['name'] == name and not claim['is spent'] and not claim.get('supported_claimid', False): return claim return False