forked from LBRYCommunity/lbry-sdk
ignore the config line warning
This commit is contained in:
parent
335d9c5c2b
commit
10d1ff7d3b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue