From 55ec5486f5e976fbf200886c99a1a3c42b0632f3 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 14 Mar 2012 23:34:05 -0400 Subject: [PATCH] Oops, pass all possible arguments to pypiezo.wiggle._run_wiggles(). --- pypiezo/wiggle.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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] -- 2.26.2