diff options
author | Sean Nowlan <nowlans@ieee.org> | 2016-02-13 19:13:40 -0500 |
---|---|---|
committer | Sean Nowlan <nowlans@ieee.org> | 2016-02-13 19:13:40 -0500 |
commit | e2c511946b60bd724d8e71dd3d46f226f50c45c8 (patch) | |
tree | 53de48d41787e3f18413aa13f8069c4e87b94918 | |
parent | 8afd3323cadd40817df8f460ea471fee29fc6c1b (diff) |
uhd: uhd_rx_cfile: fixed nsamples print statement in verbose mode
-rwxr-xr-x | gr-uhd/apps/uhd_rx_cfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-uhd/apps/uhd_rx_cfile b/gr-uhd/apps/uhd_rx_cfile index 672e9641e4..85a7562d08 100755 --- a/gr-uhd/apps/uhd_rx_cfile +++ b/gr-uhd/apps/uhd_rx_cfile @@ -191,7 +191,7 @@ class rx_cfile_block(gr.top_block): if options.nsamples is None: print("[UHD_RX] Receiving samples until Ctrl-C") else: - print("[UHD_RX] Receiving {n} samples.".format(n2s(options.nsamples))) + print("[UHD_RX] Receiving {n} samples.".format(n=n2s(options.nsamples))) if options.output_shorts: print("[UHD_RX] Writing 16-bit complex shorts") else: |