Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 27cf612

Browse files
committed
fixed a minor bug in axes.py
svn path=/trunk/matplotlib/; revision=2916
1 parent e88094a commit 27cf612

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@ def _plot_3_args(self, tup3, **kwargs):
304304
linestyle, marker, color = _process_plot_format(fmt)
305305
ret = []
306306
for j in range(y.shape[1]):
307-
color_ = color
307+
_color = color
308308
if color is None:
309-
color_ = self._get_next_cycle_color()
309+
_color = self._get_next_cycle_color()
310310
seg = Line2D(x[:,j], y[:,j],
311311
color=_color,
312312
linestyle=linestyle, marker=marker,

0 commit comments

Comments
 (0)