Skip to content

Commit

Permalink
Fixed wrongly id'd MAR cut
Browse files Browse the repository at this point in the history
  • Loading branch information
z-ink committed Jun 19, 2024
1 parent 458d368 commit d24b7c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -1962,7 +1962,7 @@ def get_edition(self, title, video, bdinfo, filelist, manual_edition):
if key in video.lower():
cut = value

ratios = {"IMAX": "IMAX", "OPEN MATTE": "Open Matte", "MAR": "MAR"}
ratios = {"IMAX": "IMAX", "OPEN MATTE": "Open Matte", " MAR ": "MAR"}
for key, value in ratios.items():
if key in video.upper():
ratio = value
Expand Down

0 comments on commit d24b7c7

Please sign in to comment.