Skip to content

Commit eed9733

Browse files
committed
Looks like facecolor wasn't added until 2.0.
1 parent ef252cf commit eed9733

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/basemap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1651,7 +1651,7 @@ def drawmapboundary(self,color='k',linewidth=1.0,fill_color=None,\
16511651
# if no fill_color given, use axes background color.
16521652
# if fill_color is string 'none', really don't fill.
16531653
if fill_color is None:
1654-
if _matplotlib_version >= '1.5':
1654+
if _matplotlib_version >= '2.0':
16551655
fill_color = ax.get_facecolor()
16561656
else:
16571657
fill_color = ax.get_axis_bgcolor()

0 commit comments

Comments
 (0)