diff options
| author | Fuwn <[email protected]> | 2024-09-14 04:32:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-14 04:32:06 -0700 |
| commit | 30a0bf6e5aec20c40e1b0c96fe9c6e3521997ff3 (patch) | |
| tree | 82e4912ce2370567a11f0f5570ba60f67241a2b5 | |
| parent | chore(cargo): add lock-file (diff) | |
| download | t-master.tar.xz t-master.zip | |
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index da2726b..b0d7100 100644 --- a/src/main.rs +++ b/src/main.rs @@ -40,7 +40,7 @@ fn main() { let matches = match opts.parse(&args[1..]) { Ok(m) => m, - Err(f) => panic!(f.to_string()), + Err(f) => panic!("{}", f.to_string()), }; if matches.opt_present("h") { |