1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 19:40:21 +01:00

cosmetic changes

This commit is contained in:
2009-05-08 20:11:11 +00:00
parent d04a84c72d
commit bcacb75229
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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.