Fix exception when no bed present. Closes #283

master
Kliment Yanev 2012-09-06 07:07:37 +02:00
parent f35ce9cffb
commit 1581ab0b94
1 changed files with 4 additions and 1 deletions

View File

@ -54,7 +54,10 @@ def dosify(name):
return os.path.split(name)[1].split(".")[0][:8]+".g"
def parse_temperature_report(report, key):
return float(filter(lambda x: x.startswith(key), report.split())[0].split(":")[1].split("/")[0])
if key in report:
return float(filter(lambda x: x.startswith(key), report.split())[0].split(":")[1].split("/")[0])
else:
return -1.0
def format_time(timestamp):
return datetime.datetime.fromtimestamp(timestamp).strftime("%H:%M:%S")