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