From 37da9409852530320b71ff69dc9e1db717e0b90d Mon Sep 17 00:00:00 2001 From: Lakshya Khatri Date: Mon, 3 Aug 2020 14:36:56 +0530 Subject: [PATCH] fix typo error --- src/backends/pyplot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index bfa92d3b..c1a8a3a1 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -438,7 +438,7 @@ function py_add_series(plt::Plot{PyPlotBackend}, series::Series) # push!(handles, handle) # else for (i, rng) in enumerate(iter_segments(series)) - handle = ax."plot"((arg[rng] for arg in xyargs)..., + handle = ax."plot"((arg[rng] for arg in xyargs)...; label = i == 1 ? series[:label] : "", zorder = series[:series_plotindex], color = py_color(single_color(get_linecolor(series, clims, i)), get_linealpha(series, i)),