From bab169269c9eeff0e1a3c1154922fb737e2e07a9 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 5 Aug 2025 08:39:18 -0400 Subject: [PATCH] Fix variable mistake in error handling --- confluent_client/bin/nodeconsole | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_client/bin/nodeconsole b/confluent_client/bin/nodeconsole index 37382dbd..62ec8b8a 100755 --- a/confluent_client/bin/nodeconsole +++ b/confluent_client/bin/nodeconsole @@ -244,7 +244,7 @@ def draw_text(text, width, height): draw_image(data, width, height, doscale=False) else: sys.stdout.write(text) - cursor_left(len(txt)) + cursor_left(len(text)) def draw_image(data, width, height, doscale=True): imageformat = os.environ.get('CONFLUENT_IMAGE_PROTOCOL', 'kitty')