Switch back from pendulum to arrow to fix broken build ;)

This commit is contained in:
Eliot Berriot 2020-03-30 10:59:16 +02:00
parent 4459f3ebc1
commit 02d35ded25
No known key found for this signature in database
GPG key ID: 6B501DFD73514E14
3 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@ import tempfile
import urllib.parse
import uuid
import pendulum
import arrow
import pydub
from django.conf import settings
from django.contrib.contenttypes.fields import GenericRelation
@ -286,7 +286,7 @@ def import_artist(v):
def parse_date(v):
d = pendulum.parse(v).date()
d = arrow.get(v).date()
return d