D6395: rust-dirstate: call new "dirs" rust implementation from Python

Yuya Nishihara yuya at tcha.org
Sat Jun 29 23:39:41 EDT 2019


> --- a/rust/hg-core/src/dirstate/dirs_multiset.rs
> +++ b/rust/hg-core/src/dirstate/dirs_multiset.rs
> @@ -118,7 +118,9 @@
>                      entry.remove();
>                  }
>                  Entry::Vacant(_) => {
> -                    return Err(DirstateMapError::PathNotFound(path.to_owned()))
> +                    return Err(DirstateMapError::PathNotFound(
> +                        path.to_owned(),
> +                    ))
>                  }
>              };

Unrelated change. Dropped.


More information about the Mercurial-devel mailing list