equal
deleted
inserted
replaced
382 """return the source of this repo |
382 """return the source of this repo |
383 |
383 |
384 Either absolute or relative the outermost repo""" |
384 Either absolute or relative the outermost repo""" |
385 parent = repo |
385 parent = repo |
386 chunks = [] |
386 chunks = [] |
387 while util.safehasattr(parent, b'_subparent'): |
387 while util.safehasattr(parent, '_subparent'): |
388 source = urlutil.url(parent._subsource) |
388 source = urlutil.url(parent._subsource) |
389 chunks.append(bytes(source)) |
389 chunks.append(bytes(source)) |
390 if source.isabs(): |
390 if source.isabs(): |
391 break |
391 break |
392 parent = parent._subparent |
392 parent = parent._subparent |