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

Skip to content

Commit eabbb36

Browse files
committed
Fix PatchCollection bug 2723527; thanks to Thomas Robitaille
svn path=/branches/v0_98_5_maint/; revision=7024
1 parent 5916eec commit eabbb36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ def determine_facecolor(patch):
11081108

11091109
facecolors = [determine_facecolor(p) for p in patches]
11101110
edgecolors = [p.get_edgecolor() for p in patches]
1111-
linewidths = [p.get_linewidths() for p in patches]
1111+
linewidths = [p.get_linewidth() for p in patches]
11121112
antialiaseds = [p.get_antialiased() for p in patches]
11131113

11141114
Collection.__init__(

0 commit comments

Comments
 (0)