Skip to content

Commit

Permalink
fix indentation in output
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerwilson committed Nov 18, 2023
1 parent 669265f commit ab50041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ fn print_comparisons(comparisons: &Vec<DatasetComparison>) {
eprintln!("table modified: \"{old_name}\" ->");
if let Some(pk_diff) = primary_key_diff {
eprintln!(
"primary key modified: {} -> {}",
" primary key modified: {} -> {}",
&pk_diff.old.map_or("none".to_string(), |pk| pk.to_string()),
&pk_diff.new.map_or("none".to_string(), |pk| pk.to_string())
);
Expand Down

0 comments on commit ab50041

Please sign in to comment.