From 4f3367cc3ab60855d2cbe3684cfe097f380c6074 Mon Sep 17 00:00:00 2001 From: anjakefala Date: Sat, 25 Nov 2023 19:57:27 -0800 Subject: [PATCH] [join] clarify ensureLoaded status msg Was a confusing message to see while the joined sheet was loading. --- visidata/features/join.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/visidata/features/join.py b/visidata/features/join.py index 4bf2a8d32..086abb8c0 100644 --- a/visidata/features/join.py +++ b/visidata/features/join.py @@ -11,7 +11,8 @@ def ensureLoaded(vd, sheets): threads = [vs.ensureLoaded() for vs in sheets] threads = [t for t in threads if t] - vd.status('loading %d sheets' % len(threads)) + if threads: + vd.status('finishing loading %d source sheets' % len(threads)) return threads