Centralize printing of subpaths

This commit is contained in:
Loïc Guégan 2024-02-21 13:29:12 +01:00
parent e8b7eaf625
commit 256a6932c3
2 changed files with 5 additions and 2 deletions

View file

@ -28,7 +28,7 @@ class ToolSearch(Tool):
if not content_only:
if not first:
print()
print("=> "+subpath)
self.printsubpath(subpath)
self.catsubpath(project,subpath)
first=False
@ -50,7 +50,7 @@ class ToolSearch(Tool):
if not content_only:
if not first:
print()
print("=> "+subpath)
self.printsubpath(subpath)
for line in entry[1]:
ln=line[0]
content=line[1]

View file

@ -6,3 +6,6 @@ class Tool:
def run(self, project, args):
pass
def printsubpath(self, subpath):
print("======= "+subpath+" =======")