From e4a4ac1b59388561ddaf0961dc7e4eaa0705ba7f Mon Sep 17 00:00:00 2001 From: areza-blocpower Date: Thu, 13 Apr 2017 09:59:59 -0400 Subject: [PATCH] Fixed syntax error in line 224 last edit of code forgot a period between attributes font and color. period has been added so that code runs properly. --- bpeng/reports/cbra_diag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bpeng/reports/cbra_diag.py b/bpeng/reports/cbra_diag.py index 359c180..990590a 100644 --- a/bpeng/reports/cbra_diag.py +++ b/bpeng/reports/cbra_diag.py @@ -221,7 +221,7 @@ class CbraDiagnostic: util_break_chart.has_axis = True util_break_chart.has_axis_title = True util_break_chart.category_axis.tick_labels.font.size = Pt(11) - util_break_chart.category_axis.tick_labels.fontcolor.rgb = RGBColor(0xff, 0xff, 0xff) + util_break_chart.category_axis.tick_labels.font.color.rgb = RGBColor(0xff, 0xff, 0xff) util_break_chart.value_axis.has_major_gridlines = False util_break_chart.value_axis.tick_label_position = XL_TICK_LABEL_POSITION.NONE -- GitLab