Skip to content

Commit 87fe6cd

Browse files
committed
ログが多すぎるので減らした
1 parent b7067a9 commit 87fe6cd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

run.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,10 @@ def remove_not_target_paths(paths):
491491

492492

493493
def convert_pageinfo(pageinfo, sidebar, sidebar_index, template, hrefs, global_qualify_list):
494-
print(pageinfo['path'])
494+
path = pageinfo['path']
495+
if path.count("/") <= 1:
496+
print(path)
497+
495498
latest_commit_info = get_latest_commit_info(pageinfo['path'])
496499

497500
if not settings.DISABLE_SIDEBAR:

0 commit comments

Comments
 (0)