rust/hg-cpython/src/revlog.rs
changeset 51196 44fbb7dfb563
parent 51195 51cc12158f97
child 51197 bc4d83047c6c
--- a/rust/hg-cpython/src/revlog.rs	Thu Aug 03 10:28:10 2023 +0200
+++ b/rust/hg-cpython/src/revlog.rs	Wed Oct 18 19:54:18 2023 +0200
@@ -603,7 +603,7 @@
     }
 }
 
-fn rev_not_in_index(py: Python, rev: UncheckedRevision) -> PyErr {
+fn nodemap_rev_not_in_index(py: Python, rev: UncheckedRevision) -> PyErr {
     PyErr::new::<ValueError, _>(
         py,
         format!(
@@ -618,7 +618,7 @@
 fn nodemap_error(py: Python, err: NodeMapError) -> PyErr {
     match err {
         NodeMapError::MultipleResults => revlog_error(py),
-        NodeMapError::RevisionNotInIndex(r) => rev_not_in_index(py, r),
+        NodeMapError::RevisionNotInIndex(r) => nodemap_rev_not_in_index(py, r),
     }
 }