diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-07-11 10:03:27 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-07-11 10:03:27 -0400 |
commit | 62831422ae4b2a817a997153468008db38e06598 (patch) | |
tree | 4aca7097fbfae8bf1890194c90ad43e44b572db5 /grc/python/FlowGraph.py | |
parent | 2bb2b31476cb33e9c1bbb196fffba3a857b4f75a (diff) | |
parent | 6d9dfac64806ad2d1eb77a9ae909e4b9d66ea7fd (diff) |
Merge remote-tracking branch 'gnuradio-wg-grc/grc_variable_blocks'
Diffstat (limited to 'grc/python/FlowGraph.py')
-rw-r--r-- | grc/python/FlowGraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/FlowGraph.py b/grc/python/FlowGraph.py index 114f708cb2..daec2d4310 100644 --- a/grc/python/FlowGraph.py +++ b/grc/python/FlowGraph.py @@ -262,7 +262,7 @@ class FlowGraph(_FlowGraph, _GUIFlowGraph): #load variables for variable in self.get_variables(): try: - e = eval(variable.get_param('value').to_code(), n, n) + e = eval(variable.get_var_value(), n, n) n[variable.get_id()] = e except: pass #make namespace public |