Skip to content

Commit

Permalink
fix logging error
Browse files Browse the repository at this point in the history
  • Loading branch information
MainRo committed Jan 24, 2024
1 parent d2dce85 commit 68fe15c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rxsci/container/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def parse_decimal(ii):
r = 0

return float(i) + r
except Exception:
except Exception as e:
logging.error(f"parse error on {ii}: {e}")
return float(ii)

Expand Down

0 comments on commit 68fe15c

Please sign in to comment.