mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 19:40:21 +01:00
cosmetic changes
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user