From: <ef...@us...> - 2008-07-13 20:51:28
|
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. |