Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
428 B
18 lines
428 B
from django.core.management.base import BaseCommand
|
|
|
|
from seminar.models import Cislo
|
|
|
|
from subprocess import CalledProcessError
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
class Command(BaseCommand):
|
|
def handle(self, *args, **options):
|
|
for c in Cislo.objects.all():
|
|
try:
|
|
c.vygeneruj_nahled()
|
|
except CalledProcessError:
|
|
logger.warning(f"Číslo {c} nezvládlo vygenerovat náhled titulky!")
|
|
pass
|
|
|
|
|