[yt-svn] commit/yt: 2 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Fri Mar 1 10:38:16 PST 2013


2 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/02aec4c121b7/
changeset:   02aec4c121b7
branch:      yt
user:        ngoldbaum
date:        2013-03-01 19:19:12
summary:     Fixing the grid callback.
affected #:  1 file

diff -r 66cfa80521d8a583b984b53306f35994790a6e86 -r 02aec4c121b713118f823f119294351b42073286 yt/visualization/plot_modifications.py
--- a/yt/visualization/plot_modifications.py
+++ b/yt/visualization/plot_modifications.py
@@ -357,6 +357,7 @@
         GLE = plot.data.grid_left_edge
         GRE = plot.data.grid_right_edge
         grid_levels = plot.data.grid_levels
+        grid_levels = grid_levels[:,0]
         min_level = self.min_level
         max_level = self.max_level
         if min_level is None:


https://bitbucket.org/yt_analysis/yt/commits/99f54b08b497/
changeset:   99f54b08b497
branch:      yt
user:        ngoldbaum
date:        2013-03-01 19:30:26
summary:     Doing the same thing in a less awful way.
affected #:  1 file

diff -r 02aec4c121b713118f823f119294351b42073286 -r 99f54b08b497e432785acf362e594ba087007cf9 yt/visualization/plot_modifications.py
--- a/yt/visualization/plot_modifications.py
+++ b/yt/visualization/plot_modifications.py
@@ -356,8 +356,7 @@
             pxs, pys = np.mgrid[0:0:1j,0:0:1j]
         GLE = plot.data.grid_left_edge
         GRE = plot.data.grid_right_edge
-        grid_levels = plot.data.grid_levels
-        grid_levels = grid_levels[:,0]
+        grid_levels = plot.data.grid_levels[:,0]
         min_level = self.min_level
         max_level = self.max_level
         if min_level is None:

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list