From b31c6d1390e92ce17c03689a35482101e59ea94a Mon Sep 17 00:00:00 2001 From: Eddie McWhirter <emcwhirter@usgs.gov> Date: Thu, 11 Feb 2016 09:26:20 -0700 Subject: [PATCH] Fix my oops with no_trim. --- geomagio/Controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geomagio/Controller.py b/geomagio/Controller.py index 47292b95..6d522516 100644 --- a/geomagio/Controller.py +++ b/geomagio/Controller.py @@ -161,7 +161,7 @@ class Controller(object): processed = algorithm.process(timeseries) # trim if --no-trim is not set if not options.no_trim: - processed.no_trim(starttime=options.starttime, + processed.trim(starttime=options.starttime, endtime=options.endtime) if options.rename_output_channel: processed = self._rename_channels( -- GitLab