summaryrefslogtreecommitdiff
path: root/docs/exploring-gnuradio/fm_demod.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/exploring-gnuradio/fm_demod.py')
-rw-r--r--docs/exploring-gnuradio/fm_demod.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/exploring-gnuradio/fm_demod.py b/docs/exploring-gnuradio/fm_demod.py
index 71d7f64c82..a297e78a76 100644
--- a/docs/exploring-gnuradio/fm_demod.py
+++ b/docs/exploring-gnuradio/fm_demod.py
@@ -82,7 +82,7 @@ class build_graph(gr.top_block):
def main(args):
tb = build_graph()
tb.start() # fork thread and return
- eval(input('Press Enter to quit: '))
+ input('Press Enter to quit: ')
tb.stop()
if __name__ == '__main__':