|
From: <ef...@us...> - 2008-08-06 20:39:44
|
Revision: 5982
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5982&view=rev
Author: efiring
Date: 2008-08-06 20:39:42 +0000 (Wed, 06 Aug 2008)
Log Message:
-----------
bugfix: masked array was created but not used
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/transforms.py
Modified: trunk/matplotlib/lib/matplotlib/transforms.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/transforms.py 2008-08-06 18:06:21 UTC (rev 5981)
+++ trunk/matplotlib/lib/matplotlib/transforms.py 2008-08-06 20:39:42 UTC (rev 5982)
@@ -808,7 +808,7 @@
return
points, minpos, changed = update_path_extents(
- Path(xy), None, self._points, self._minpos, ignore)
+ Path(xym), None, self._points, self._minpos, ignore)
if changed:
self._points = points
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|