From 739f5e011528ab0651f67be7e40daf8e48cb3764 Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Tue, 22 Nov 2016 12:46:10 +0100 Subject: [PATCH 1/1] check for lessons without section --- curriculum/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/curriculum/models.py b/curriculum/models.py index cfe5ffe..1d77d4f 100644 --- a/curriculum/models.py +++ b/curriculum/models.py @@ -109,6 +109,7 @@ class Level(models.Model): prefix = 'Skrocony kurs/%d %s/' % (i, lesson.slug) lesson.add_to_zip(zipf, student, prefix) for c, (section, clessons) in enumerate(lessons['course'].items()): + assert section, clessons for i, lesson in enumerate(clessons): prefix = 'Pelny kurs/%d %s/%d %s/' % (c, section.slug, i, lesson.slug) lesson.add_to_zip(zipf, student, prefix) -- 2.20.1