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

This commit is contained in:
Kevin Froman 2021-01-22 23:10:40 +00:00
parent 11490afee7
commit ff1d7b4982
1 changed files with 3 additions and 2 deletions

View File

@ -79,8 +79,9 @@ parser.add_argument(
args = parser.parse_args()
p = Popen([sub_script, 'version'])
p.communicate()
#p = Popen([sub_script, 'version'])
#p.communicate()
os.system(f"{sub_script} version")
print("Configuring Onionr before starting daemon")
from filepaths import config_file, keys_file
from coredb import blockmetadb