Use _meta field instead of class

This commit is contained in:
Yohann D'ANELLO 2020-10-26 14:29:55 +01:00
parent 997c2eac50
commit 9afb750be6
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class Command(BaseCommand):
for model_class, file_name in [(BD, "bd.md"), (Manga, "mangas.md"), (Roman, "romans.md"),
(CD, "cd.md"), (Vinyle, "vinyle.md")]:
with open(directory + "/docs/" + file_name, "w") as f:
f.write("# " + model_class._meta.verbose_name)
f.write("# " + str(model_class._meta.verbose_name))
titles = list(set(obj["title"] for obj in model_class.objects.values("title").distinct().all()))
titles.sort()