summaryrefslogtreecommitdiffstats
path: root/src/args.rs
diff options
context:
space:
mode:
authorStephan Dilly <dilly.stephan@gmail.com>2021-06-05 10:28:18 +0200
committerStephan Dilly <dilly.stephan@gmail.com>2021-06-05 10:28:18 +0200
commit5b07c4823404765ed259859e5412b2e92ac600c9 (patch)
treefefca0c35eebc7951841dc7237682752247c9800 /src/args.rs
parent6006e7aebdc4bb5a14442c0f1508e4bf242e84b6 (diff)
nightly clippy fixes
Diffstat (limited to 'src/args.rs')
-rw-r--r--src/args.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/args.rs b/src/args.rs
index 9ff40870..57e5be83 100644
--- a/src/args.rs
+++ b/src/args.rs
@@ -49,7 +49,7 @@ pub fn process_cmdline() -> Result<CliArgs> {
let arg_matches = app.get_matches();
if arg_matches.is_present("bugreport") {
- bug_report::generate_bugreport()?;
+ bug_report::generate_bugreport();
std::process::exit(0);
}
if arg_matches.is_present("logging") {