Remove print statement when aligning text

Fixes #550. The print statement results in a "Could not parse JSON" error.
This commit is contained in:
Ljupcho Kotev 2020-02-20 14:24:06 +01:00 committed by GitHub
parent 0751b7c084
commit ef1c56480e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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":