Adjust output of regain

This commit is contained in:
Fred Boniface 2023-10-03 21:04:35 +01:00
parent 5e0ce5006b
commit e294f5b872
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ if __name__ == "__main__":
output = result.stdout
error = result.stderr
# Handle the captured output as needed
print("Output:", output)
print("Error:", error)
print("STDOUT Output:", output)
print("STDERR Output:", error)
else:
result = subprocess.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)