summaryrefslogtreecommitdiff
path: root/grc/python/Generator.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2015-09-04 05:40:24 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2015-09-04 05:40:24 -0700
commit80d52551db67b2e80955eaadbbc63a54d4d4abbc (patch)
treec84957617025cf5a857e26b9993eee16500780dc /grc/python/Generator.py
parent8ec2b0ed041bd62c11d64ca46cf497a544ed05f4 (diff)
parent791c1a705d9e1457d9c09c79c7f1300c2ac63f5e (diff)
Merge remote-tracking branch 'gnuradio-wg-grc/master_grcwg'
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)