diff options
Diffstat (limited to 'gr-qtgui/apps/gr_constellation_plot')
-rwxr-xr-x | gr-qtgui/apps/gr_constellation_plot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/apps/gr_constellation_plot b/gr-qtgui/apps/gr_constellation_plot index fe5bdb56df..8ca7104a61 100755 --- a/gr-qtgui/apps/gr_constellation_plot +++ b/gr-qtgui/apps/gr_constellation_plot @@ -168,7 +168,7 @@ def main(): tb = my_top_block(filelist, args.start, nsamples, max_nsamples); main_box = plot_constellation_form(tb, 'GNU Radio Constellation Plot', 10000.0) - for n in xrange(tb._nsigs): + for n in range(tb._nsigs): main_box._style_edit[n].setCurrentIndex(0) main_box.show() |