From 2fe20033e3e1448b1d63bb280625b19904d21fb6 Mon Sep 17 00:00:00 2001 From: Stan <1939656+GDay@users.noreply.github.com> Date: Fri, 31 Jul 2026 23:25:25 +0200 Subject: [PATCH] more str --- django_q/monitor_terminal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django_q/monitor_terminal.py b/django_q/monitor_terminal.py index 6ccb5e4..94877dd 100644 --- a/django_q/monitor_terminal.py +++ b/django_q/monitor_terminal.py @@ -146,11 +146,11 @@ def monitor(run_once=False, broker=None): ) print( term.move(i, 5 * col_width) - + term.center(results, width=col_width - 1) + + term.center(str(results), width=col_width - 1) ) print( term.move(i, 6 * col_width) - + term.center(stat.reincarnations, width=col_width - 1) + + term.center(str(stat.reincarnations), width=col_width - 1) ) print( term.move(i, 7 * col_width)