summaryrefslogtreecommitdiff
path: root/gr-utils/python/utils/plot_psd_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-utils/python/utils/plot_psd_base.py')
-rw-r--r--gr-utils/python/utils/plot_psd_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/python/utils/plot_psd_base.py b/gr-utils/python/utils/plot_psd_base.py
index 7c5138be4d..0a0f3cab34 100644
--- a/gr-utils/python/utils/plot_psd_base.py
+++ b/gr-utils/python/utils/plot_psd_base.py
@@ -103,7 +103,7 @@ class plot_psd_base(object):
# returns a zero-length array
if(len(self.iq) > 0):
tstep = 1.0 / self.sample_rate
- #self.time = scipy.array([tstep*(self.position + i) for i in xrange(len(self.iq))])
+ #self.time = scipy.array([tstep*(self.position + i) for i in range(len(self.iq))])
self.time = scipy.array([tstep*(i) for i in range(len(self.iq))])
self.iq_psd, self.freq = self.dopsd(self.iq)