Revision: 7024
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7024&view=rev
Author:   efiring
Date:     2009-04-05 01:37:26 +0000 (Sun, 05 Apr 2009)

Log Message:
-----------
Fix PatchCollection bug 2723527; thanks to Thomas Robitaille

Modified Paths:
--------------
    branches/v0_98_5_maint/lib/matplotlib/collections.py

Modified: branches/v0_98_5_maint/lib/matplotlib/collections.py
===================================================================
--- branches/v0_98_5_maint/lib/matplotlib/collections.py        2009-04-04 
22:52:53 UTC (rev 7023)
+++ branches/v0_98_5_maint/lib/matplotlib/collections.py        2009-04-05 
01:37:26 UTC (rev 7024)
@@ -1108,7 +1108,7 @@
 
             facecolors   = [determine_facecolor(p) for p in patches]
             edgecolors   = [p.get_edgecolor() for p in patches]
-            linewidths   = [p.get_linewidths() for p in patches]
+            linewidths   = [p.get_linewidth() for p in patches]
             antialiaseds = [p.get_antialiased() for p in patches]
 
             Collection.__init__(


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to