Skip to content

Commit

Permalink
Minor: Print title case empty headers
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc-st committed Jan 25, 2025
1 parent a0f98b3 commit 5b87076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion humble.py
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ def print_empty_headers(headers, l_empty):
for key in sorted(headers):
if not headers[key]:
l_empty.append(f"{key}")
print_header(key)
print_header(key.title())
e_cnt += 1
return e_cnt

Expand Down

0 comments on commit 5b87076

Please sign in to comment.