summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2017-09-22 16:27:15 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2017-09-22 16:27:15 -0700
commit1ca375a1abdba35e34c42603e25d5d0118a639d2 (patch)
tree17df66d901178473b2ce7cfec4f75fef26d79b55 /docs
parentb8f97b1694c1244103b9f02a27cc47c260422c7a (diff)
parent5ee319cb49a5a344521f33b123b4ad0d0927163a (diff)
Merge remote-tracking branch 'github/pr/1435' into python3
Diffstat (limited to 'docs')
-rw-r--r--docs/exploring-gnuradio/dial_tone.py2
-rw-r--r--docs/exploring-gnuradio/fm_demod.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/exploring-gnuradio/dial_tone.py b/docs/exploring-gnuradio/dial_tone.py
index 42cbf3c9d0..08498a84e0 100644
--- a/docs/exploring-gnuradio/dial_tone.py
+++ b/docs/exploring-gnuradio/dial_tone.py
@@ -41,5 +41,5 @@ def build_graph():
if __name__ == '__main__':
tb = build_graph()
tb.start()
- eval(input('Press Enter to quit: '))
+ input('Press Enter to quit: ')
tb.stop()
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__':