From 9d7ec878ad48a74eb17432bd45cbbf1a3acc2c20 Mon Sep 17 00:00:00 2001
From: Victor Shyba <victor.shyba@gmail.com>
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 fb149a120..b54331f83 100644
--- a/lbry/wallet/orchstr8/node.py
+++ b/lbry/wallet/orchstr8/node.py
@@ -589,7 +589,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)