rust/hg-cpython/src/dirstate/item.rs
changeset 48143 21542d4cb568
parent 48142 fb3b41d583c2
child 48150 d71feb05d5b6
--- a/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 04:04:09 2021 +0200
+++ b/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 04:07:21 2021 +0200
@@ -67,6 +67,11 @@
     }
 
     @property
+    def p1_tracked(&self) -> PyResult<bool> {
+        Ok(self.entry(py).get().p1_tracked())
+    }
+
+    @property
     def added(&self) -> PyResult<bool> {
         Ok(self.entry(py).get().added())
     }