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:
parent
d1a69fe25b
commit
3674882662
15 changed files with 22 additions and 22 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue