Skip to content

Commit c4e9356

Browse files
authored
Fix whitespace in _axes.py error message
This fixes issue #30285.
1 parent 93a421e commit c4e9356

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2296,7 +2296,7 @@ def _parse_bar_color_args(self, kwargs):
22962296
facecolor = mcolors.to_rgba_array(facecolor)
22972297
except ValueError as err:
22982298
raise ValueError(
2299-
"'facecolor' or 'color' argument must be a valid color or"
2299+
"'facecolor' or 'color' argument must be a valid color or "
23002300
"sequence of colors."
23012301
) from err
23022302

0 commit comments

Comments
 (0)