From ff9cfefa4b2c241eb088c91e08edff515d3a0fce Mon Sep 17 00:00:00 2001 From: William McBrine Date: Mon, 18 Feb 2008 20:07:46 -0500 Subject: [PATCH] Metadata time in UTC. --- plugins/video/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/video/video.py b/plugins/video/video.py index 6d3dbca..9835f92 100644 --- a/plugins/video/video.py +++ b/plugins/video/video.py @@ -127,7 +127,7 @@ class Video(Plugin): metadata = {} metadata.update(self.__metadata_basic(full_path)) - now = datetime.now() + now = datetime.utcnow() duration = self.__duration(full_path) duration_delta = timedelta(milliseconds = duration) -- 2.11.4.GIT