ignore the config line warning
This commit is contained in:
parent
4a93b906d7
commit
0c86ed924b
1 changed files with 1 additions and 1 deletions
|
@ -591,7 +591,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)
|
||||||
|
|
Loading…
Reference in a new issue