Skip to content

Commit

Permalink
👹 Feed the hobgoblins (delint).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 23, 2024
1 parent 736f62d commit b2cea8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions jaraco/media/dvd_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ def title_info(device, title):

# need at least two -v to get "Found NAVI packet"
mpcmd = (
'mplayer -v -v -v -identify -nosound -frames 0 '
'-dvd-device %s dvd://%i -vo null'
'mplayer -v -v -v -identify -nosound -frames 0 -dvd-device %s dvd://%i -vo null'
)

cmd = mpcmd % (device, title)
Expand Down
3 changes: 1 addition & 2 deletions jaraco/media/splice.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ def convert_timestamp_to_s(input_timestamp):
return (input_timestamp - datetime.datetime.min).total_seconds()

raise TypeError(
f"Timestamp must be float, string or date/time, "
f"not {type(input_timestamp)!r}"
f"Timestamp must be float, string or date/time, not {type(input_timestamp)!r}"
)


Expand Down

0 comments on commit b2cea8c

Please sign in to comment.