Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shitwolfymakes committed May 18, 2022
1 parent ac07f26 commit fa58e69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arm/ripper/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def put_track(job, t_no, seconds, aspect, fps, mainfeature, source, filename="")
job = job ID\n
t_no = track number\n
seconds = lenght of track in seconds\n
seconds = length of track in seconds\n
aspect = aspect ratio (ie '16:9')\n
fps = frames per second (float)\n
mainfeature = True/False\n
Expand All @@ -420,7 +420,7 @@ def put_track(job, t_no, seconds, aspect, fps, mainfeature, source, filename="")
"""

logging.debug(
f"Track #{t_no:02} Length: {seconds: >4} fps: {fps:2.3f} "
f"Track #{t_no:0>3} Length: {seconds: >4} fps: {fps:2.3f} "
f"aspect: {aspect: >4} Mainfeature: {mainfeature} Source: {source}")

t = m.Track(
Expand Down

0 comments on commit fa58e69

Please sign in to comment.