Fix CD import
This commit is contained in:
parent
28eac94312
commit
3977ab9ec3
|
@ -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,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue