diff options
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py b/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py index 4afd1bd144..be0ec04699 100644 --- a/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py +++ b/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py @@ -280,7 +280,7 @@ class GrDataPlotterPsdC(GrDataPlotParent): self._iscomplex = True self._npts = 2048 - self._wintype = filter.firdes.WIN_BLACKMAN_hARRIS + self._wintype = fft.window.WIN_BLACKMAN_hARRIS self._fc = 0 self._setup(1) @@ -313,7 +313,7 @@ class GrDataPlotterPsdF(GrDataPlotParent): self._iscomplex = False self._npts = 2048 - self._wintype = filter.firdes.WIN_BLACKMAN_hARRIS + self._wintype = fft.window.WIN_BLACKMAN_hARRIS self._fc = 0 self._setup(1) |