From 0c4370bc0f93bf9e4a4046ba162ea57f6726e07e Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Tue, 6 Feb 2018 16:53:40 -0500 Subject: [PATCH] fix variable name --- mtsenliven.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtsenliven.py b/mtsenliven.py index fa0a48a..31d417f 100644 --- a/mtsenliven.py +++ b/mtsenliven.py @@ -72,7 +72,7 @@ def print_unique_only(output): " time the message above will be shown") def process_msg(bstring): - output = output_original.decode("utf-8") + output = bstring.decode("utf-8") # works on python2 or 3 print_unique_only(output)