Skip to content

Commit

Permalink
[dev-] fixup callNoExceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
saulpw committed Dec 21, 2023
1 parent bf782a6 commit 9ee2ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visidata/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def setValuesFromExpr(self, rows, expr):
# Note: expressions that are only calculated once, do not need to pass column identity
# they can reference their "previous selves" once without causing a recursive problem
v = vd.callNoExceptions(self.sheet.evalExpr, compiledExpr, row)
vd.callNoExceptions(self.setValue, v)
vd.callNoExceptions(self.setValue, row, v)
self.recalc()
vd.status('set %d values = %s' % (len(rows), expr))

Expand Down

0 comments on commit 9ee2ce1

Please sign in to comment.