summaryrefslogtreecommitdiff
path: root/gr-uhd/examples/python/freq_hopping.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-uhd/examples/python/freq_hopping.py')
-rwxr-xr-xgr-uhd/examples/python/freq_hopping.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-uhd/examples/python/freq_hopping.py b/gr-uhd/examples/python/freq_hopping.py
index 3b4c426976..903b0b23d4 100755
--- a/gr-uhd/examples/python/freq_hopping.py
+++ b/gr-uhd/examples/python/freq_hopping.py
@@ -89,7 +89,7 @@ class FrequencyHopperSrc(gr.hier_block2):
numpy.random.shuffle(self.hop_sequence)
self.hop_sequence = [self.hop_sequence[x % n_channels] for x in xrange(n_bursts)]
if verbose:
- print "Hop Frequencies | Hop Pattern"
+ print "Hop Frequencies | Hop Pattern"
print "=================|================================"
for f in self.hop_sequence:
print "{:6.3f} MHz | ".format(f/1e6),