From 745b2b2d34cff22468ea9a4a785e82d3398dc4e6 Mon Sep 17 00:00:00 2001 From: Brennan Ashton <bashton@brennanashton.com> Date: Thu, 15 Nov 2018 16:27:44 -0800 Subject: gr-utils: Condense gr_plot commands and fix datatype arg This removes all the gr_plot_* applications save for: - gr_plot (time-domain) - gr_plot_fft (FFT domain) - gr_plot_psd (Power Spectrum Density) --- gr-utils/python/utils/gr_plot_fft | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gr-utils/python/utils/gr_plot_fft') diff --git a/gr-utils/python/utils/gr_plot_fft b/gr-utils/python/utils/gr_plot_fft index 59fc88b994..92a0b2501a 100644 --- a/gr-utils/python/utils/gr_plot_fft +++ b/gr-utils/python/utils/gr_plot_fft @@ -29,7 +29,7 @@ def main(): parser = plot_fft_base.setup_options() args = parser.parse_args() - dc = plot_fft_base(args.data_type, args.file, args) + plot_fft_base(None, args.file, args) if __name__ == "__main__": try: -- cgit v1.2.3