Skip to content

Commit

Permalink
[sheet-] setting .name should set .names also
Browse files Browse the repository at this point in the history
noticed the rec loader was not showing the sheet names
  • Loading branch information
saulpw committed May 16, 2024
1 parent 2cedecd commit 000a778
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions visidata/basesheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ def name(self, name):
if self._names:
vd.addUndo(setattr, self, '_names', self._names)
self._name = self.maybeClean(str(name))
self._names = self._name.split(self.options.name_joiner)

def maybeClean(self, s):
'stub'
Expand Down

0 comments on commit 000a778

Please sign in to comment.