From ef1c56480e8f8356aa3eb892907e72d109d4af3c Mon Sep 17 00:00:00 2001 From: Ljupcho Kotev Date: Thu, 20 Feb 2020 14:24:06 +0100 Subject: [PATCH] Remove print statement when aligning text Fixes #550. The print statement results in a "Could not parse JSON" error. --- bumblebee/output.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bumblebee/output.py b/bumblebee/output.py index 3df3a29..39805d5 100644 --- a/bumblebee/output.py +++ b/bumblebee/output.py @@ -74,7 +74,6 @@ def scrollable(func): if len(text) <= width: # do alignment align = module.parameter("theme.align", "left") - print("alignment: {}".format(align)) if align == "right": text = "{:>{}}".format(text, width) if align == "center":