don't print version command to devnull in run script either

This commit is contained in:
Kevin Froman 2021-01-22 22:58:12 +00:00
parent 51e97cd877
commit f31888e541
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ parser.add_argument(
args = parser.parse_args()
p = Popen([sub_script, 'version'], stdout=DEVNULL)
p = Popen([sub_script, 'version'])
p.wait()
from filepaths import config_file, keys_file
from coredb import blockmetadb