tweek: separate file and desc into distinct columns

This commit is contained in:
Paul Trowbridge 2026-05-14 08:14:56 -04:00
parent 42c85f4468
commit bf91831284

View File

@ -204,7 +204,7 @@ def cmd_week(args):
for ts, kind, tid, file, desc in by_day[day]:
t = totals.get(tid, 0)
dur = _fmt_dur(t) if t else " "
print(f" {marker.get(kind,'? ')} {tid:<24} {dur:>6} {file} {desc[:60]}")
print(f" {marker.get(kind,'? ')} {tid:<24} {dur:>6} {file:<36} {desc[:60]}")
if kind in ("done", "done+new"): n_done += 1
if kind in ("new", "done+new"): n_new += 1
if tid not in counted_tids: