[Scipy-svn] r2826 - trunk/Lib/sandbox/timeseries
scipy-svn@scip...
scipy-svn@scip...
Mon Mar 5 16:00:42 CST 2007
Author: mattknox_ca
Date: 2007-03-05 16:00:39 -0600 (Mon, 05 Mar 2007)
New Revision: 2826
Modified:
trunk/Lib/sandbox/timeseries/tseries.py
Log:
fixed typo in mask_period
Modified: trunk/Lib/sandbox/timeseries/tseries.py
===================================================================
--- trunk/Lib/sandbox/timeseries/tseries.py 2007-03-05 22:00:08 UTC (rev 2825)
+++ trunk/Lib/sandbox/timeseries/tseries.py 2007-03-05 22:00:39 UTC (rev 2826)
@@ -955,7 +955,7 @@
raise ValueError,"Data should be a valid TimeSeries!"
dates = data._dates
if dates.ndim == 1:
- dates_lims = dates[[0,-1]]
+ dates_lim = dates[[0,-1]]
else:
dates_lim = dates.ravel()[[0,-1]]
# Check the period .....................
More information about the Scipy-svn
mailing list