[Yt-svn] yt-commit r1414 - trunk/yt/lagos

skillman at wrangler.dreamhost.com skillman at wrangler.dreamhost.com
Thu Aug 27 10:39:11 PDT 2009


Author: skillman
Date: Thu Aug 27 10:39:10 2009
New Revision: 1414
URL: http://yt.spacepope.org/changeset/1414

Log:
Missed getting rid of a [:-1] that led to incomplete data.  Now fixed.
 


Modified:
   trunk/yt/lagos/Profiles.py

Modified: trunk/yt/lagos/Profiles.py
==============================================================================
--- trunk/yt/lagos/Profiles.py	(original)
+++ trunk/yt/lagos/Profiles.py	Thu Aug 27 10:39:10 2009
@@ -207,7 +207,7 @@
 
         # These are the bin *left edges*.  These are the x-axis values
         # we plot in the PlotCollection
-        self[bin_field] = self._bins[:-1]
+        self[bin_field] = self._bins
 
         # If we are not being memory-conservative, grab all the bins
         # and the inverse indices right now.



More information about the yt-svn mailing list