rust/rhg/src/commands/root.rs
changeset 46135 dca9cb99971c
parent 45984 fada33872b5b
child 46167 8a4914397d02
--- a/rust/rhg/src/commands/root.rs	Mon Dec 14 13:47:44 2020 +0100
+++ b/rust/rhg/src/commands/root.rs	Mon Dec 14 14:59:23 2020 +0100
@@ -2,7 +2,7 @@
 use crate::error::CommandError;
 use crate::ui::Ui;
 use format_bytes::format_bytes;
-use hg::operations::FindRoot;
+use hg::operations::find_root;
 use hg::utils::files::get_bytes_from_path;
 
 pub const HELP_TEXT: &str = "
@@ -21,7 +21,7 @@
 
 impl Command for RootCommand {
     fn run(&self, ui: &Ui) -> Result<(), CommandError> {
-        let path_buf = FindRoot::new().run()?;
+        let path_buf = find_root()?;
 
         let bytes = get_bytes_from_path(path_buf);