diff --git a/src/cli.rs b/src/cli.rs index a86a836b..57e0140b 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -628,8 +628,10 @@ pub fn print_csv( cells.push(v); } None => { - "".hash(&mut hasher); - cells.push("".to_owned()); + let yaml = serde_yaml::to_string(&tau_to_json(value)) + .expect("could not get yaml"); + yaml.hash(&mut hasher); + cells.push(yaml); } } continue;