dirlens 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dirlens.py +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dirlens.py
CHANGED
|
@@ -553,7 +553,7 @@ def main():
|
|
|
553
553
|
render(str(target), "", 0, cfg, stats, active_pats)
|
|
554
554
|
|
|
555
555
|
print()
|
|
556
|
-
summary = f" {stats['dirs']} ディレクトリ, {stats['files']} ファイル"
|
|
556
|
+
summary = f" 合計 {stats['dirs']} ディレクトリ, {stats['files']} ファイル"
|
|
557
557
|
if args.gitignore: summary += " (.gitignore 適用済み)"
|
|
558
558
|
if cfg.type_ext: summary += f" (フィルタ: {cfg.type_ext})"
|
|
559
559
|
if cfg.excludes: summary += f" (除外: {', '.join(cfg.excludes)})"
|