|
From: <lee...@us...> - 2010-04-20 17:39:02
|
Revision: 8248
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8248&view=rev
Author: leejjoon
Date: 2010-04-20 17:38:56 +0000 (Tue, 20 Apr 2010)
Log Message:
-----------
fix axisartist.grid_finder.py to account for the api change of MaxNLocator
Modified Paths:
--------------
trunk/matplotlib/lib/mpl_toolkits/axisartist/grid_finder.py
Modified: trunk/matplotlib/lib/mpl_toolkits/axisartist/grid_finder.py
===================================================================
--- trunk/matplotlib/lib/mpl_toolkits/axisartist/grid_finder.py 2010-04-20 16:44:01 UTC (rev 8247)
+++ trunk/matplotlib/lib/mpl_toolkits/axisartist/grid_finder.py 2010-04-20 17:38:56 UTC (rev 8248)
@@ -256,8 +256,9 @@
symmetric=False,
prune=None):
- mticker.MaxNLocator.__init__(self, nbins, steps,
- trim, integer, symmetric, prune)
+ mticker.MaxNLocator.__init__(self, nbins, steps=steps,
+ trim=trim, integer=integer,
+ symmetric=symmetric, prune=prune)
self.create_dummy_axis()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|