Skip to content

Commit

Permalink
fix ls offset
Browse files Browse the repository at this point in the history
  • Loading branch information
max-hoffman committed Dec 13, 2023
1 parent bad8ef2 commit cd1ca5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doltcli/dolt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ def ls(self, system: bool = False, all: bool = False, **kwargs) -> List[TableT]:
if not line:
pass
split = line.lstrip().split()
tables.append(Table(name=split[0], row_cnt=int(split[len(split)-1])))
tables.append(Table(name=split[0], row_cnt=int(split[len(split)-2])))

if system_pos:
for line in output[system_pos:]:
Expand Down

0 comments on commit cd1ca5f

Please sign in to comment.