From: <jr...@us...> - 2009-09-24 21:16:14
|
Revision: 7825 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7825&view=rev Author: jrevans Date: 2009-09-24 21:16:07 +0000 (Thu, 24 Sep 2009) Log Message: ----------- Fixed a typo. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2009-09-24 20:47:11 UTC (rev 7824) +++ trunk/matplotlib/lib/matplotlib/axes.py 2009-09-24 21:16:07 UTC (rev 7825) @@ -1446,7 +1446,7 @@ # cannot check for '==0' since unitized data may not compare to zero if (isinstance(patch, mpatches.Rectangle) and - ((not patch.get_width()) or (notpatch.get_height()))): + ((not patch.get_width()) or (not patch.get_height()))): return vertices = patch.get_path().vertices if vertices.size > 0: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |