From 0c86ed924b26ad228a9ff91a87c943f2ca41bf1f Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 8 Dec 2021 22:51:23 -0300 Subject: [PATCH] ignore the config line warning --- lbry/wallet/orchstr8/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/orchstr8/node.py b/lbry/wallet/orchstr8/node.py index 6869a3a3f..0bfb63917 100644 --- a/lbry/wallet/orchstr8/node.py +++ b/lbry/wallet/orchstr8/node.py @@ -591,7 +591,7 @@ class LBCWalletNode: *cmnd_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE ) out, err = await process.communicate() - if err: + if err and b'creating a default config file' not in err: log.warning(err) result = out.decode().strip() self.log.info(result)