summaryrefslogtreecommitdiffstats
path: root/src/cli/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/mod.rs')
-rw-r--r--src/cli/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cli/mod.rs b/src/cli/mod.rs
index 6f84164..6c72b1b 100644
--- a/src/cli/mod.rs
+++ b/src/cli/mod.rs
@@ -136,8 +136,7 @@ pub fn run() -> Result<Option<Launchable>, ProgramError> {
tree_options.apply_launch_args(&cli_matches);
// verb store is completed from the config file(s)
- let mut verb_store = VerbStore::default();
- verb_store.init(&mut config)?;
+ let verb_store = VerbStore::new(&mut config)?;
// reading the other arguments
let file_export_path = cli_matches.value_of("file-export-path").map(str::to_string);