summaryrefslogtreecommitdiff
path: root/docs/exploring-gnuradio/dial_tone.py
diff options
context:
space:
mode:
authorHåkon Vågsether <haakonsv@gmail.com>2017-08-21 11:35:08 +0200
committerHåkon Vågsether <haakonsv@gmail.com>2017-08-21 11:35:08 +0200
commit5ee319cb49a5a344521f33b123b4ad0d0927163a (patch)
tree2bd6c840a40fa816397d3a078e4070cc73658bed /docs/exploring-gnuradio/dial_tone.py
parentafd7c8e43659ec461ae4c4859ecf55ba95304255 (diff)
Fix typos from switch to Python 3
Diffstat (limited to 'docs/exploring-gnuradio/dial_tone.py')
-rw-r--r--docs/exploring-gnuradio/dial_tone.py2
1 files changed, 1 insertions, 1 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()