ignore the config line warning

This commit is contained in:
Victor Shyba 2021-12-08 22:51:23 -03:00 committed by Jack Robison
parent 4a93b906d7
commit 0c86ed924b
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

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