ignore the config line warning

This commit is contained in:
Victor Shyba 2021-12-08 22:51:23 -03:00 committed by Ubuntu
parent 335d9c5c2b
commit 10d1ff7d3b

View file

@ -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)