Skip to content

Commit

Permalink
Clean up monitor, and testing copilot
Browse files Browse the repository at this point in the history
  • Loading branch information
charnley committed Feb 15, 2024
1 parent eb65972 commit d7bcea2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin.deb.x/monitor
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import subprocess
import copy


def shell(cmd, shell=False):

if shell:
Expand All @@ -18,7 +19,7 @@ def shell(cmd, shell=False):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)

output, err = p.communicate()
output, _ = p.communicate()
return output.decode("utf-8")


Expand Down

0 comments on commit d7bcea2

Please sign in to comment.