|
From: <ef...@us...> - 2008-10-24 22:35:34
|
Revision: 6329
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6329&view=rev
Author: efiring
Date: 2008-10-24 22:35:25 +0000 (Fri, 24 Oct 2008)
Log Message:
-----------
Another typo bug in recent commit for shared axes support
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/axes.py
Modified: trunk/matplotlib/lib/matplotlib/axes.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/axes.py 2008-10-24 18:16:12 UTC (rev 6328)
+++ trunk/matplotlib/lib/matplotlib/axes.py 2008-10-24 22:35:25 UTC (rev 6329)
@@ -831,7 +831,7 @@
if self._sharey is not None:
self.yaxis.major = self._sharey.yaxis.major
self.yaxis.minor = self._sharey.yaxis.minor
- y0, y1 = self._sharex.get_ylim()
+ y0, y1 = self._sharey.get_ylim()
self.set_ylim(y0, y1, emit=False)
self.yaxis.set_scale(self._sharey.yaxis.get_scale())
else:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|