Skip to content

Commit

Permalink
improve error msg
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres committed Jan 10, 2025
1 parent 8ddccae commit 01a6925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rinex-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fn user_data_parsing(
is_rover: bool,
) -> QcContext {
let mut ctx =
QcContext::new().unwrap_or_else(|e| panic!("failed to initialize new context {}", e));
QcContext::new().unwrap_or_else(|e| panic!("context setup issue: {}", e));

// recursive dir loader
for dir in directories.iter() {
Expand Down

0 comments on commit 01a6925

Please sign in to comment.