Skip to content

Commit

Permalink
Just the date, ma'am
Browse files Browse the repository at this point in the history
Don't need the time for the aired date
  • Loading branch information
waveform80 committed Jul 21, 2024
1 parent 59a7a35 commit 9623dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tvrip/ripcmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ def format_overview(s):
table.add_row(
str(num),
entry.title,
str(entry.aired) if entry.aired else '-',
f'{entry.aired:%Y-%m-%d}' if entry.aired else '-',
entry.status,
format_overview(entry.overview),
)
Expand Down

0 comments on commit 9623dcf

Please sign in to comment.