##// END OF EJS Templates
util: make walkrepos() return .hg/patches if present
Peter Arrenbrecht -
r6166:f857eac3 default
parent child Browse files
Show More
@@ -1709,6 +1709,9 b' def walkrepos(path):'
1709 1709 if '.hg' in dirs:
1710 1710 dirs[:] = [] # don't descend further
1711 1711 yield root # found a repository
1712 qroot = os.path.join(root, '.hg', 'patches')
1713 if os.path.exists(os.path.join(qroot, '.hg')):
1714 yield qroot # we have a patch queue repo here
1712 1715
1713 1716 _rcpath = None
1714 1717
General Comments 0
You need to be logged in to leave comments. Login now