From 95aeccfc22be3c53aff96c763ea50fa9cee4c0d3 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Tue, 6 Feb 2018 17:07:55 -0500 Subject: [PATCH] fix variable naming --- mtsenliven.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtsenliven.py b/mtsenliven.py index b8209ff..1084f7c 100644 --- a/mtsenliven.py +++ b/mtsenliven.py @@ -84,7 +84,7 @@ while True: try: # out_bytes = process.stdout.readline() # err_bytes = process.stderr.readline() - out_bytes, err_bytes = p.communicate() + out_bytes, err_bytes = process.communicate() if (out_bytes == '') and \ (err_bytes == '') and \ (process.poll() is not None):