##// END OF EJS Templates
narrowcommands: drop unnecessary adding of '' for root directory...
Martin von Zweigbergk -
r42532:7d4ee14f default
parent child Browse files
Show More
@@ -216,7 +216,7 b' def _narrow(ui, repo, remote, commoninc,'
216 216 todelete.append(f)
217 217 elif f.startswith('meta/'):
218 218 dir = f[5:-13]
219 dirs = [''] + sorted(util.dirs({dir})) + [dir]
219 dirs = sorted(util.dirs({dir})) + [dir]
220 220 include = True
221 221 for d in dirs:
222 222 visit = newmatch.visitdir(d)
General Comments 0
You need to be logged in to leave comments. Login now