[plotter] correct a log message

This commit is contained in:
Noe Brucy
2021-07-24 15:07:11 +02:00
parent a59ae36280
commit 5a970dca91
+1 -1
View File
@@ -1184,7 +1184,7 @@ class Plotter(Aggregator, BaseProcessor):
y = ytransform(y) y = ytransform(y)
if yerr is not None: if yerr is not None:
self._log( self._log(
"Errorbar may be meaning less when ytransform is used", "WARNING" "Errorbar may be meaningless when ytransform is used", "WARNING"
) )
if smooth > 0: if smooth > 0:
y = gaussian_filter1d(y, sigma=smooth) y = gaussian_filter1d(y, sigma=smooth)