minor update

This commit is contained in:
Blaise Tine
2024-02-09 20:34:44 -08:00
parent ae7b01405c
commit 3fee1a6193
4 changed files with 4 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python
# Copyright © 2019-2023
#
# Copyright 2019-2023
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
@@ -34,7 +34,7 @@ def monitor(stop):
break
def execute(command):
process = subprocess.Popen(command, stdout=subprocess.PIPE)
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
while True:
output = process.stdout.readline()
if output: