From 45f1850028888f64779110184312b5c866868774 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Wed, 21 Jan 2026 15:17:55 -0600 Subject: [PATCH] scripts: csv.py: Fixed missing -F/--hidden-field parsing For some reason -F/--hidden-field fields weren't being parsed as a CsvExpr, breaking any attempt to use exprs with hidden fields. Probably just broken during a refactor. Fortunately an easy fix. --- scripts/csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/csv.py b/scripts/csv.py index c3a7b27f..1b7de362 100755 --- a/scripts/csv.py +++ b/scripts/csv.py @@ -2623,7 +2623,7 @@ if __name__ == "__main__": type=lambda x: ( lambda k, v=None: ( k.strip(), - v.strip() if v is not None else None) + CsvExpr(v) if v is not None else None) )(*x.split('=', 1)), help="Like -f/--field, but hidden from the table renderer, " "and doesn't affect -f/--field defaults.")