Skip to content

Commit

Permalink
[join bugfix] extend passes source sheets as positional arg
Browse files Browse the repository at this point in the history
  • Loading branch information
saulpw authored and anjakefala committed Sep 25, 2018
1 parent ee79a6b commit cdf75a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visidata/join.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def createJoinedSheet(sheets, jointype=''):
elif jointype == 'extend':
vs = copy(sheets[0])
vs.name = '+'.join(vs.name for vs in sheets)
vs.reload = functools.partial(ExtendedSheet_reload, vs, sources=sheets)
vs.reload = functools.partial(ExtendedSheet_reload, vs, sheets)
vs.rows = tuple() # to induce reload on first push, see vdtui
return vs
else:
Expand Down

0 comments on commit cdf75a6

Please sign in to comment.