diff options
Diffstat (limited to 'grc/python/Generator.py')
-rw-r--r-- | grc/python/Generator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py index f807b59ad1..3c687a2d64 100644 --- a/grc/python/Generator.py +++ b/grc/python/Generator.py @@ -140,6 +140,7 @@ class TopBlockGenerator(object): if self._generate_options == 'no_gui' and xterm_executable: cmds = [xterm_executable, '-e', args_to_string(cmds)] + Messages.send_start_exec(args_to_string(cmds)) p = subprocess.Popen( args=cmds, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False, universal_newlines=True) @@ -172,7 +173,7 @@ class TopBlockGenerator(object): return code blocks = expr_utils.sort_objects( - filter(lambda b: b.get_enabled() and not b.get_bypassed(), self._flow_graph.get_blocks()), + filter(lambda b: b.get_enabled() and not b.get_bypassed(), self._flow_graph.iter_blocks()), lambda b: b.get_id(), _get_block_sort_text ) # List of regular blocks (all blocks minus the special ones) |