Revision: 5764
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5764&view=rev
Author:   efiring
Date:     2008-07-13 13:51:25 -0700 (Sun, 13 Jul 2008)

Log Message:
-----------
Fix PatchCollection bug found by Ryan May

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/collections.py

Modified: trunk/matplotlib/lib/matplotlib/collections.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/collections.py      2008-07-13 20:29:55 UTC 
(rev 5763)
+++ trunk/matplotlib/lib/matplotlib/collections.py      2008-07-13 20:51:25 UTC 
(rev 5764)
@@ -888,7 +888,7 @@
 
         if match_original:
             def determine_facecolor(patch):
-                if patch.fill():
+                if patch.fill:
                     return patch.get_facecolor()
                 return [0, 0, 0, 0]
 


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

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to