Fix CD import

This commit is contained in:
Yohann D'ANELLO 2020-05-23 16:42:59 +02:00
parent 28eac94312
commit 3977ab9ec3
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ from sys import stdin
from django.core.management import BaseCommand
from media.models import Auteur, Vinyle
from media.models import Auteur, CD
class Command(BaseCommand):
@ -27,12 +27,12 @@ class Command(BaseCommand):
if len(cd) != 3:
continue
side = cd[0]
title = cd[1]
title = cd[0]
side = cd[1]
authors_str = cd[2].split('|')
authors = [Auteur.objects.get_or_create(name=author)[0]
for author in authors_str]
cd, created = Vinyle.objects.get_or_create(
cd, created = CD.objects.get_or_create(
title=title,
side_identifier=side,
)