Skip to content

Commit

Permalink
[join] clarify ensureLoaded status msg (#2137)
Browse files Browse the repository at this point in the history
* [join] clarify ensureLoaded status msg is for source sheets
  • Loading branch information
anjakefala authored Nov 28, 2023
1 parent 56c941d commit a06b3f1
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('loading %d source sheets' % len(threads))
return threads


Expand Down

0 comments on commit a06b3f1

Please # to comment.