diff --git a/subtitle_shift_pointsync.py b/subtitle_shift_pointsync.py index 3a243ae..0a48b60 100644 --- a/subtitle_shift_pointsync.py +++ b/subtitle_shift_pointsync.py @@ -98,7 +98,7 @@ def seconds_to_hms(seconds, force_hours=False, force_milliseconds=False): if hours or force_hours: parts.append(hours) - if minutes or force_hours: + if hours or minutes or force_hours: parts.append(minutes) parts.append(seconds)