bug fixes
This commit is contained in:
@@ -859,9 +859,18 @@ def step_to_string(step):
|
|||||||
targettype = None
|
targettype = None
|
||||||
|
|
||||||
if targettype == 'HeartRate':
|
if targettype == 'HeartRate':
|
||||||
value = step['targetValue']
|
try:
|
||||||
valuelow = step['targetValueLow']
|
value = step['targetValue']
|
||||||
valuehigh = step['targetValueHigh']
|
except KeyError:
|
||||||
|
value = 0
|
||||||
|
try:
|
||||||
|
valuelow = step['targetValueLow']
|
||||||
|
except KeyError:
|
||||||
|
valuelow = 0
|
||||||
|
try:
|
||||||
|
valuehigh = step['targetValueHigh']
|
||||||
|
except KeyError:
|
||||||
|
valuehigh = 0
|
||||||
|
|
||||||
if value < 10 and value>0:
|
if value < 10 and value>0:
|
||||||
target = 'Target: Heart Rate in zone {v}'.format(v=value)
|
target = 'Target: Heart Rate in zone {v}'.format(v=value)
|
||||||
@@ -877,9 +886,17 @@ def step_to_string(step):
|
|||||||
h = valuehigh+100
|
h = valuehigh+100
|
||||||
)
|
)
|
||||||
elif targettype == 'Power':
|
elif targettype == 'Power':
|
||||||
value = step['targetValue']
|
try:
|
||||||
valuelow = step['targetValueLow']
|
value = step['targetValue']
|
||||||
valuehigh = step['targetValueHigh']
|
except KeyError:
|
||||||
|
value = 0
|
||||||
|
try:
|
||||||
|
valuelow = step['targetValueLow']
|
||||||
|
except KeyError:
|
||||||
|
valuelow = 0
|
||||||
|
try:
|
||||||
|
valuehigh = step['targetValueHigh']
|
||||||
|
except KeyError:
|
||||||
|
|
||||||
if value < 10 and value>0:
|
if value < 10 and value>0:
|
||||||
target = 'Target: Power in zone {v}'.format(v=value)
|
target = 'Target: Power in zone {v}'.format(v=value)
|
||||||
@@ -895,9 +912,18 @@ def step_to_string(step):
|
|||||||
h = valuehigh-1000
|
h = valuehigh-1000
|
||||||
)
|
)
|
||||||
elif targettype == 'Speed':
|
elif targettype == 'Speed':
|
||||||
value = step['targetValue']
|
try:
|
||||||
valuelow = step['targetValueLow']
|
value = step['targetValue']
|
||||||
valuehigh = step['targetValueHigh']
|
except KeyError:
|
||||||
|
value = 0
|
||||||
|
try:
|
||||||
|
valuelow = step['targetValueLow']
|
||||||
|
except KeyError:
|
||||||
|
valuelow = 0
|
||||||
|
try:
|
||||||
|
valuehigh = step['targetValueHigh']
|
||||||
|
except KeyError:
|
||||||
|
valuehigh = 0
|
||||||
|
|
||||||
if value != 0:
|
if value != 0:
|
||||||
v = value/1000.
|
v = value/1000.
|
||||||
|
|||||||
Reference in New Issue
Block a user