From 65e9e2b680c1f5cbf32fe1b26e329973b12166c0 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Thu, 12 Dec 2019 09:14:34 -0800 Subject: [PATCH] Remove graph months str decode --- plexpy/graphs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/graphs.py b/plexpy/graphs.py index d83fa346..e424f82f 100644 --- a/plexpy/graphs.py +++ b/plexpy/graphs.py @@ -394,7 +394,7 @@ class Graphs(object): for dt in sorted(month_range): date_string = dt.strftime('%Y-%m') - categories.append(dt.strftime('%b %Y').decode(plexpy.SYS_ENCODING, 'replace')) + categories.append(dt.strftime('%b %Y')) series_1_value = 0 series_2_value = 0 series_3_value = 0