diff options
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r-- | grc/core/FlowGraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index bf26225e48..58e10f08b5 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -103,7 +103,7 @@ class FlowGraph(Element): """Iterate over custom code block ID and Source""" for block in self.iter_enabled_blocks(): if block.key == 'epy_module': - yield block.name, block.params[1].get_value() + yield block.name, block.params['source_code'].get_value() def iter_enabled_blocks(self): """ |