Skip to content

Commit

Permalink
fix: error string clarifying quotes (#2755)
Browse files Browse the repository at this point in the history
  • Loading branch information
tychoish authored Mar 7, 2024
1 parent 415c514 commit 0e1ffa0
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 0e1ffa0

Please sign in to comment.