|
From: <ef...@us...> - 2009-08-04 18:09:49
|
Revision: 7350
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7350&view=rev
Author: efiring
Date: 2009-08-04 18:09:38 +0000 (Tue, 04 Aug 2009)
Log Message:
-----------
Fix typo in recent change to contour.py.
(There are still bugs to be found in the change to cntr.c.)
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/contour.py
Modified: trunk/matplotlib/lib/matplotlib/contour.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/contour.py 2009-08-04 17:59:44 UTC (rev 7349)
+++ trunk/matplotlib/lib/matplotlib/contour.py 2009-08-04 18:09:38 UTC (rev 7350)
@@ -652,7 +652,7 @@
codes = np.zeros(kind.shape, dtype=mpath.Path.code_type)
codes.fill(mpath.Path.LINETO)
codes[0] = mpath.Path.MOVETO
- codes[kinds >= _cntr._slitkind] = mpath.Path.MOVETO
+ codes[kind >= _cntr._slitkind] = mpath.Path.MOVETO
paths.append(mpath.Path(seg, codes))
return paths
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|