From: W. Trevor King Date: Thu, 15 Mar 2012 03:34:05 +0000 (-0400) Subject: Oops, pass all possible arguments to pypiezo.wiggle._run_wiggles(). X-Git-Tag: 0.6~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=55ec5486f5e976fbf200886c99a1a3c42b0632f3;p=pypiezo.git Oops, pass all possible arguments to pypiezo.wiggle._run_wiggles(). --- diff --git a/pypiezo/wiggle.py b/pypiezo/wiggle.py index 06b47f4..08e66a4 100644 --- a/pypiezo/wiggle.py +++ b/pypiezo/wiggle.py @@ -196,7 +196,9 @@ def wiggle_for_interference( if plot: interactive = _matplotlib.is_interactive() plot_ = _setup_plot(piezo=piezo, config=config, output=output) - _run_wiggles(piezo=piezo, config=config, plot=plot_) + _run_wiggles( + piezo=piezo, config=config, plot=plot_, output=output, + filename=filename, group=group, keypress_test_mode=keypress_test_mode) if plot: _matplotlib.interactive(interactive) piezo.last_output[config['axis']] = out[-1,0]