From: <ef...@us...> - 2008-11-08 18:41:30
|
Revision: 6377 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6377&view=rev Author: efiring Date: 2008-11-08 18:41:25 +0000 (Sat, 08 Nov 2008) Log Message: ----------- Fix bugs in unit-handling in axhspan and axvspan Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008-11-08 18:33:01 UTC (rev 6376) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008-11-08 18:41:25 UTC (rev 6377) @@ -2880,7 +2880,7 @@ self.transAxes, self.transData) # process the unit information - self._process_unit_info( [xmin, xmax], [ymin, ymax], **kwargs ) + self._process_unit_info( [xmin, xmax], [ymin, ymax], kwargs=kwargs ) # first we need to strip away the units xmin, xmax = self.convert_xunits( [xmin, xmax] ) @@ -2934,7 +2934,7 @@ self.transData, self.transAxes) # process the unit information - self._process_unit_info( [xmin, xmax], [ymin, ymax], **kwargs ) + self._process_unit_info( [xmin, xmax], [ymin, ymax], kwargs=kwargs ) # first we need to strip away the units xmin, xmax = self.convert_xunits( [xmin, xmax] ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |