diff options
author | Josh Blum | 2011-04-05 10:38:47 -0700 |
---|---|---|
committer | Josh Blum | 2011-04-07 12:06:03 -0500 |
commit | 11837de659a69d1d8aaf353a046f06ef7c260c5c (patch) | |
tree | 667347334fecef255280f02fa0285f54cdf7e9b9 /grc | |
parent | eca5501969aa6175562b7e70b350cf3e6ddec603 (diff) | |
download | gnuradio-11837de659a69d1d8aaf353a046f06ef7c260c5c.tar.gz gnuradio-11837de659a69d1d8aaf353a046f06ef7c260c5c.tar.bz2 gnuradio-11837de659a69d1d8aaf353a046f06ef7c260c5c.zip |
grc: fix for generating top block when in run to completion mode
Diffstat (limited to 'grc')
-rw-r--r-- | grc/python/flow_graph.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/flow_graph.tmpl b/grc/python/flow_graph.tmpl index 5aaa99793..e16e86f5b 100644 --- a/grc/python/flow_graph.tmpl +++ b/grc/python/flow_graph.tmpl @@ -243,9 +243,9 @@ if __name__ == '__main__': tb.show() qapp.exec_() #elif $generate_options == 'no_gui' + tb = $(class_name)($(', '.join($params_eq_list))) #set $run_options = $flow_graph.get_option('run_options') #if $run_options == 'prompt' - tb = $(class_name)($(', '.join($params_eq_list))) tb.start() raw_input('Press Enter to quit: ') tb.stop() |