Private
Public Access
1
0

bugfix drive length

This commit is contained in:
Sander Roosendaal
2017-05-23 20:19:11 +02:00
parent 83c6cecdd9
commit e1f9378107
2 changed files with 9 additions and 3 deletions

View File

@@ -1390,6 +1390,7 @@ def interactive_flex_chart2(id=0,promember=0,
rowdata = dataprep.getsmallrowdata_db(columns,ids=[id],doclean=True,
workstrokesonly=workstrokesonly)
try:
tests = rowdata[yparam2]
except KeyError:
@@ -1442,7 +1443,8 @@ def interactive_flex_chart2(id=0,promember=0,
tseconds = rowdata.ix[:,'time']
except KeyError:
return '','No time data - cannot make flex plot','',''
try:
rowdata['x1'] = rowdata.ix[:,xparam]
except KeyError: