##// END OF EJS Templates
merge with stable
Matt Mackall -
r15208:d0694223 merge default
parent child Browse files
Show More
@@ -202,7 +202,8 b' def reporelpath(repo):'
202 parent = repo
202 parent = repo
203 while util.safehasattr(parent, '_subparent'):
203 while util.safehasattr(parent, '_subparent'):
204 parent = parent._subparent
204 parent = parent._subparent
205 return repo.root[len(parent.root)+1:]
205 p = parent.root.rstrip(os.sep)
206 return repo.root[len(p) + 1:]
206
207
207 def subrelpath(sub):
208 def subrelpath(sub):
208 """return path to this subrepo as seen from outermost repo"""
209 """return path to this subrepo as seen from outermost repo"""
General Comments 0
You need to be logged in to leave comments. Login now