Centralize printing of subpaths
This commit is contained in:
parent
e8b7eaf625
commit
256a6932c3
2 changed files with 5 additions and 2 deletions
|
@ -28,7 +28,7 @@ class ToolSearch(Tool):
|
||||||
if not content_only:
|
if not content_only:
|
||||||
if not first:
|
if not first:
|
||||||
print()
|
print()
|
||||||
print("=> "+subpath)
|
self.printsubpath(subpath)
|
||||||
self.catsubpath(project,subpath)
|
self.catsubpath(project,subpath)
|
||||||
first=False
|
first=False
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ class ToolSearch(Tool):
|
||||||
if not content_only:
|
if not content_only:
|
||||||
if not first:
|
if not first:
|
||||||
print()
|
print()
|
||||||
print("=> "+subpath)
|
self.printsubpath(subpath)
|
||||||
for line in entry[1]:
|
for line in entry[1]:
|
||||||
ln=line[0]
|
ln=line[0]
|
||||||
content=line[1]
|
content=line[1]
|
||||||
|
|
|
@ -6,3 +6,6 @@ class Tool:
|
||||||
|
|
||||||
def run(self, project, args):
|
def run(self, project, args):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def printsubpath(self, subpath):
|
||||||
|
print("======= "+subpath+" =======")
|
||||||
|
|
Loading…
Add table
Reference in a new issue