Skip to content

Commit 814a4d9

Browse files
committed
fix error
1 parent af66255 commit 814a4d9

File tree

1 file changed

+1
-1
lines changed
  • crates/compilers/src/resolver

1 file changed

+1
-1
lines changed

crates/compilers/src/resolver/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ impl<L: Language, D: ParsedSource<Language = L>> Graph<D> {
633633

634634
let mut msg = "Found incompatible versions:\n".white().to_string();
635635
self.format_imports_list(idx, nodes.into_iter().collect(), &mut msg).unwrap();
636-
Err(format!("Found incompatible versions:\n{msg}"))
636+
Err(msg)
637637
}
638638

639639
fn input_nodes_by_language(&self) -> HashMap<D::Language, Vec<usize>> {

0 commit comments

Comments
 (0)