From 3cd972a4dad80f20e6f0700c3b6907434f82e53d Mon Sep 17 00:00:00 2001 From: Kay Kurokawa Date: Fri, 23 Jun 2017 14:25:44 -0400 Subject: [PATCH] fix UnknownNameError message --- lbrynet/core/Wallet.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py index c6ab121b6..04f4ce0e5 100644 --- a/lbrynet/core/Wallet.py +++ b/lbrynet/core/Wallet.py @@ -760,7 +760,9 @@ class Wallet(object): @defer.inlineCallbacks def _handle_claim_result(self, results, update_caches=True): if not results: - raise UnknownNameError("No results to return") + #TODO: cannot determine what name we searched for here + # we should fix lbryum commands that return None + raise UnknownNameError("") if 'error' in results: if results['error'] in ['name is not claimed', 'claim not found']: