fixed bug where non-integral types would be compared accidentally

This commit is contained in:
Kjistóf 2017-03-05 09:29:49 +01:00
parent a8ada1621e
commit ab0dd17687
1 changed files with 14 additions and 3 deletions

View File

@ -8,21 +8,32 @@ from requests.exceptions import ConnectionError
def main(wf):
num = None
subtt = u''
try:
num = str(get_week.get_week())
title = u'Épp {}.'.format(num)
title = u'Épp {}.'
subtt = u'hét van!'
if num == 14: title = u'Póthét ({}. hét)'.format(num); subtt = u'van!'
if num > 14: title = u'Vizsgaidőszak ({}. hét)'.format(num); subtt = u'van!'
if int(num) == 14:
title = u'Póthét ({}. hét)'
subtt = u'van!'
if int(num) > 14:
title = u'Vizsgaidőszak ({}. hét)'
subtt = u'van!'
title = title.format(num)
except ConnectionError:
title = u'Nincs internet!'
except (IndexError, RuntimeError):
title = u'A KTH összebarmolta a honlapját!'
except EnvironmentError:
title = u'Nyár van, nyugi!'
wf.add_item(title=title, subtitle=subtt, arg=num, valid=True)
wf.send_feedback()
if __name__ == '__main__':
wf = Workflow()
sys.exit(wf.run(main))