Skip to content

Commit

Permalink
Change select to match 0.44 (#4792)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiajt committed Mar 9, 2022
1 parent fac086c commit e0fac7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/nu-command/src/filters/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ fn select(
cols.push(path.into_string());
vals.push(value);
}
Err(error) => {
Err(_) => {
cols.push(path.into_string());
vals.push(Value::Error { error });
vals.push(Value::Nothing { span });
}
}
}
Expand Down

0 comments on commit e0fac7b

Please sign in to comment.