Skip to content

Commit

Permalink
[join] clarify ensureLoaded status msg
Browse files Browse the repository at this point in the history
Was a confusing message to see while the joined sheet was loading.
  • Loading branch information
anjakefala committed Nov 26, 2023
1 parent 3f9b77a commit 4f3367c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion visidata/features/join.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 4f3367c

Please # to comment.