1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
7 from django.utils import timezone
8 from django.conf import settings
10 tz = pytz.timezone(settings.TIME_ZONE)
13 def localtime_to_utc(localtime):
14 return timezone.utc.normalize(
15 tz.localize(localtime)
20 return dt.strftime('%Y/%m/%d %H:%M:%S UTC')
24 if not os.path.isdir(path):