ignore the config line warning

This commit is contained in:
Victor Shyba 2021-12-08 22:51:23 -03:00 committed by Lex Berezhny
parent 93c472a352
commit 9d7ec878ad

View file

@ -589,7 +589,7 @@ class LBCWalletNode:
*cmnd_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE *cmnd_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE
) )
out, err = await process.communicate() out, err = await process.communicate()
if err: if err and b'creating a default config file' not in err:
log.warning(err) log.warning(err)
result = out.decode().strip() result = out.decode().strip()
self.log.info(result) self.log.info(result)