mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
remove the "MODULE NOT FOUND" print from the parser (#8816)
related to #8765. should close #8812. # Description this PR simply removes the `prinln("MODULE NOT FOUND")` from the parser. # User-Facing Changes no more `MODULE NOT FOUND` while typing a `use` command
This commit is contained in:
parent
f2b977b9c5
commit
415607706f
1 changed files with 0 additions and 1 deletions
|
@ -1779,7 +1779,6 @@ pub fn parse_use(working_set: &mut StateWorkingSet, spans: &[Span]) -> (Pipeline
|
|||
);
|
||||
}
|
||||
} else {
|
||||
println!("MODULE NOT FOUND");
|
||||
working_set.error(ParseError::ModuleNotFound(import_pattern.head.span));
|
||||
return (
|
||||
Pipeline::from_vec(vec![Expression {
|
||||
|
|
Loading…
Reference in a new issue