fix in librarian
[wolnelektury.git] / wolnelektury / utils.py
index e06fb1d..0c256e5 100644 (file)
@@ -5,8 +5,6 @@
 import pytz
 from django.utils import timezone
 from django.conf import settings
-from pipeline.storage import GZIPMixin
-from pipeline.storage import PipelineCachedStorage
 
 tz = pytz.timezone(settings.TIME_ZONE)
 
@@ -17,6 +15,3 @@ def localtime_to_utc(localtime):
 
 def utc_for_js(dt):
     return dt.strftime('%Y/%m/%d %H:%M:%S UTC')
-
-class GzipPipelineCachedStorage(GZIPMixin, PipelineCachedStorage):
-    pass