diff options
author | Håkon Vågsether <haakonsv@gmail.com> | 2017-08-21 11:35:08 +0200 |
---|---|---|
committer | Håkon Vågsether <haakonsv@gmail.com> | 2017-08-21 11:35:08 +0200 |
commit | 5ee319cb49a5a344521f33b123b4ad0d0927163a (patch) | |
tree | 2bd6c840a40fa816397d3a078e4070cc73658bed /docs/exploring-gnuradio/dial_tone.py | |
parent | afd7c8e43659ec461ae4c4859ecf55ba95304255 (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.py | 2 |
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() |