1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Fix spelling mistakes

This commit is contained in:
Lars Kruse 2020-08-25 15:45:57 +02:00
parent d1a69fe25b
commit 3674882662
15 changed files with 22 additions and 22 deletions

View file

@ -128,9 +128,9 @@ def get_data(do_save=True):
if ',CONNECT,' not in line:
continue
splitted = line.split(',')
key = splitted[2]
date = datetime.strptime(splitted[0], '%Y%m%d %H:%M:%S')
split = line.split(',')
key = split[2]
date = datetime.strptime(split[0], '%Y%m%d %H:%M:%S')
# hack to add timezone data to the datetime
date = begin + (date - begin_local)