Commit be263316 authored by Arnaud Fontaine's avatar Arnaud Fontaine

erp5.util.benchmark: Fix for recent versions of matplotlib.

parent 1c7650f0
......@@ -329,7 +329,7 @@ def drawBarDiagram(axes, stat_list, only_average=False):
width, color='r', label='Mean')
axes.errorbar(numpy.arange(0.5, len(stat_list)), mean_list,
yerr=[yerr_lower, yerr_upper], fmt=None,
yerr=[yerr_lower, yerr_upper], fmt='none',
label='Standard deviation')
if not only_average:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment