diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-08 11:56:48 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-08 11:56:48 -0700 |
commit | f5b4cc0f16f8b8f11bd7f54b069ba190732e86ce (patch) | |
tree | 84fa2bb82b62074f9a3836b8e77529bdf891e632 /gr-atsc | |
parent | b10df0bc36f80497308a664b1a0bfed8a85577e2 (diff) |
atsc: fix typo in moved file
This fixes Debian bug tracker #714987
Diffstat (limited to 'gr-atsc')
-rwxr-xr-x | gr-atsc/python/atsc/xlate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-atsc/python/atsc/xlate.py b/gr-atsc/python/atsc/xlate.py index 3d049ac524..eb04ecc68a 100755 --- a/gr-atsc/python/atsc/xlate.py +++ b/gr-atsc/python/atsc/xlate.py @@ -45,7 +45,7 @@ def graph (): src0 = blocks.file_source(gr.sizeof_gr_complex,"/tmp/atsc_pipe_1") duc_coeffs = filter.firdes.low_pass( 1, 19.2e6, 9e6, 1e6, filter.firdes.WIN_HAMMING ) - duc = filter.freq_xlating_fir_filter_ccf( 1 duc_coeffs, 5.75e6, 19.2e6 ) + duc = filter.freq_xlating_fir_filter_ccf( 1, duc_coeffs, 5.75e6, 19.2e6 ) c2f = blocks.complex_to_float() file = blocks.file_sink(gr.sizeof_float,"/tmp/atsc_pipe_2") |