mercurial/localrepo.py
changeset 6526 cfeeac24fc1e
parent 6407 12377957948d
child 6528 bd6bf5798f39
--- a/mercurial/localrepo.py	Fri Apr 11 22:19:51 2008 -0700
+++ b/mercurial/localrepo.py	Fri Apr 11 22:19:52 2008 -0700
@@ -476,6 +476,9 @@
     def wjoin(self, f):
         return os.path.join(self.root, f)
 
+    def rjoin(self, f):
+        return os.path.join(self.root, util.pconvert(f))
+        
     def file(self, f):
         if f[0] == '/':
             f = f[1:]