diff --git a/pygtktalog/misc.py b/pygtktalog/misc.py index 542caba..919ae07 100644 --- a/pygtktalog/misc.py +++ b/pygtktalog/misc.py @@ -13,7 +13,7 @@ def float_to_string(float_length): @number - digit to be converted into time. Returns HH:MM:SS formatted string """ - hour = int(float_length / 3600); + hour = int(float_length / 3600) float_length -= hour*3600 minutes = int(float_length / 60) float_length -= minutes * 60 diff --git a/pygtktalog/video.py b/pygtktalog/video.py index 15a88cb..47750ed 100644 --- a/pygtktalog/video.py +++ b/pygtktalog/video.py @@ -14,6 +14,7 @@ import math from pygtktalog.misc import float_to_string + class Video(object): """Class for retrive midentify script output and put it in dict. Usually there is no need for such a detailed movie/clip information.