Skip to content

Commit 98594a2

Browse files
authored
Merge pull request #30287 from meeseeksmachine/auto-backport-of-pr-30286-on-v3.10.x
Backport PR #30286 on branch v3.10.x (Fix whitespace in _axes.py error message)
2 parents fff6a3c + 3aa1417 commit 98594a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2365,8 +2365,8 @@ def _parse_bar_color_args(self, kwargs):
23652365
facecolor = mcolors.to_rgba_array(facecolor)
23662366
except ValueError as err:
23672367
raise ValueError(
2368-
"'facecolor' or 'color' argument must be a valid color or"
2369-
"sequence of colors."
2368+
"'facecolor' or 'color' argument must be a valid color or "
2369+
"sequence of colors."
23702370
) from err
23712371

23722372
return facecolor, edgecolor

0 commit comments

Comments
 (0)