mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 02:39:58 +02:00
Switch back from pendulum to arrow to fix broken build ;)
This commit is contained in:
parent
4459f3ebc1
commit
02d35ded25
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue