Skip to content
Snippets Groups Projects
Commit f857eac30cd5 authored by Peter Arrenbrecht's avatar Peter Arrenbrecht
Browse files

util: make walkrepos() return .hg/patches if present

parent 0d36de68669c
No related branches found
No related tags found
No related merge requests found
......@@ -1709,6 +1709,9 @@
if '.hg' in dirs:
dirs[:] = [] # don't descend further
yield root # found a repository
qroot = os.path.join(root, '.hg', 'patches')
if os.path.exists(os.path.join(qroot, '.hg')):
yield qroot # we have a patch queue repo here
_rcpath = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment