fixed detection of "repeat week" and exam period (wrong weeks were used)

This commit is contained in:
Kjistóf 2017-05-08 12:57:09 +02:00
parent ab0dd17687
commit 8be6120115

View File

@ -14,10 +14,10 @@ def main(wf):
title = u'Épp {}.' title = u'Épp {}.'
subtt = u'hét van!' subtt = u'hét van!'
if int(num) == 14: if int(num) == 15:
title = u'Póthét ({}. hét)' title = u'Póthét ({}. hét)'
subtt = u'van!' subtt = u'van!'
if int(num) > 14: if int(num) > 15:
title = u'Vizsgaidőszak ({}. hét)' title = u'Vizsgaidőszak ({}. hét)'
subtt = u'van!' subtt = u'van!'