Skip to content

Commit

Permalink
fixing code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
shitwolfymakes committed Apr 14, 2022
1 parent fad12e8 commit a19a28f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arm/ripper/makemkv.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,13 +214,13 @@ def get_track_info(mdisc, job):
titles = int(line_split[1].strip())
logging.info(f"Found {titles} titles")
utils.database_updater({'no_of_titles': titles}, job)

if msg_type == "TINFO":
if track != line_track:
if line_track == int(0):
pass
track = line_track
else:
utils.put_track(job, track, seconds, aspect, fps, False, "makemkv", filename)
track = line_track

if msg[1] == "27":
filename = msg[3].replace('"', '').strip()
Expand Down

0 comments on commit a19a28f

Please sign in to comment.