From 467bf28a5899307f677302619474acb108913b11 Mon Sep 17 00:00:00 2001 From: swee Date: Mon, 23 Sep 2024 12:19:35 -0700 Subject: [PATCH] fix good --- cc/good | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc/good b/cc/good index 58da297..26042f6 100644 --- a/cc/good +++ b/cc/good @@ -1,4 +1,4 @@ import subprocess s = subprocess.run(["date"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) -dait = s.stdout.rstrip() +dait = s.stdout.decode().rstrip() print(f"Good {dait} everyone.") \ No newline at end of file