Cannot generate the HTML interactive report file
Hello,
While using pyNmonParser -b -o testReport -i test.nmon I'm getting this error:
INFO - Preparing CSV files..
INFO - Preparing interactive Report..
Traceback (most recent call last):
File "/usr/local/bin/pyNmonAnalyzer", line 11, in
And while I can see the csv folder and its contents, the interactiveReport.html file is empty (0 Kb)
Can anyone tell me what could be the the reason behind this error?
change the compare order in pyNmonReport.py line 107:
if localMax == None or max(numericArray) > localMax: localMax = max(numericArray) if localMin == None or min(numericArray) < localMin: localMin = min(numericArray)
change the compare order in pyNmonReport.py line 107:
if localMax == None or max(numericArray) > localMax: localMax = max(numericArray) if localMin == None or min(numericArray) < localMin: localMin = min(numericArray)
It works! Thanks.