Skip to content

Commit

Permalink
[bugfix] time_format_check
Browse files Browse the repository at this point in the history
  • Loading branch information
taseikyo committed Aug 30, 2020
1 parent 8cb92f0 commit 6f9fa46
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ffmpeg-helper/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,7 @@ def time_format_check(self, time_raw):
tmp = int(x) + carry
if tmp > 59:
carry = tmp // 60
tmp -= 60
else:
carry = 0
tmp %= 60
time_legal.append(str(tmp))
except:
return ""
Expand Down

0 comments on commit 6f9fa46

Please sign in to comment.