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 3d744f74c4..af6d35f7fb 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -370,7 +370,7 @@ class FlowGraph(Element): n['block'] = [b.export_data() for b in blocks] n['connection'] = [c.export_data() for c in connections] instructions = odict({ - 'created': '.'.join(self.get_parent().config.version2), + 'created': '.'.join(self.get_parent().config.version_parts), 'format': FLOW_GRAPH_FILE_FORMAT_VERSION, }) return odict({'flow_graph': n, '_instructions': instructions}) |