fix locale bug

This commit is contained in:
Götz 2017-10-03 00:34:02 +02:00
parent cb3901bcdb
commit d21bc402ad
2 changed files with 2 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -6,13 +6,11 @@ from pprint import pprint
import os
import locale
os.environ['TZ'] = 'Europe/Berlin'
SPEISEPLAN_NAME_SELECTOR = '.csc-default .csc-header .csc-firstHeader'
LINK_FEKIDE_Events = "https://www.feki.de/terminkalender"
LINK_FEKIDE = "https://www.feki.de"
locale.setlocale(locale.LC_TIME, '')
locale.setlocale(locale.LC_TIME, 'de_DE.utf-8')
def loadPage(url: str):