summaryrefslogtreecommitdiff
path: root/grc/python/Generator.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2015-09-04 05:40:42 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2015-09-04 05:40:42 -0700
commit273e5068d6d418eebb77dc0b5e15da20018bb90f (patch)
treee24edf95f5b32a6e724c937d2338dcbdbea85888 /grc/python/Generator.py
parent15ae9d779efa12e7c8a495d87c42032b82942796 (diff)
parent80d52551db67b2e80955eaadbbc63a54d4d4abbc (diff)
Merge branch 'master' into next
Diffstat (limited to 'grc/python/Generator.py')
-rw-r--r--grc/python/Generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py
index 98fbd0c360..3c687a2d64 100644
--- a/grc/python/Generator.py
+++ b/grc/python/Generator.py
@@ -173,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)