Skip to content

Commit

Permalink
fix: error string clarifying quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
tychoish committed Mar 7, 2024
1 parent a7573ac commit fd3abd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sqlexec/src/dispatch/external.rs
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ impl<'a> ExternalDispatcher<'a> {
)
.await?),
_ => Err(DispatchError::String(
format!("Unsupported file type: {}, for '{}'", file_type, path,).to_string(),
format!("Unsupported file type: '{}', for '{}'", file_type, path,).to_string(),
)),
}
}
Expand Down

0 comments on commit fd3abd2

Please sign in to comment.