don't assume that aktywnosc/opis is non-empty
authorJan Szejko <jan.szejko@gmail.com>
Thu, 23 Jun 2016 10:02:09 +0000 (12:02 +0200)
committerJan Szejko <jan.szejko@gmail.com>
Thu, 23 Jun 2016 10:02:09 +0000 (12:02 +0200)
apps/catalogue/models/book.py

index 626dd9c..09164a3 100755 (executable)
@@ -479,6 +479,8 @@ class Book(models.Model):
         # print '.',
         w1t = i1.xslt(t)
         for h in w1t.findall('//aktywnosc/opis'):
+            if len(h) == 0:
+                raise ParseError('Pusty element aktywnosc/opis')
             # FIXME assumption that every lesson has at most 9 parts
             if not h[0].text or not re.match(r'\d\.\s', h[0].text):
                 raise ParseError('Niepoprawny nagłówek (aktywnosc/opis): %s' % repr(h[0].text))