summaryrefslogtreecommitdiff
path: root/grc/python/FlowGraph.py
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2014-07-11 10:03:27 -0400
committerTom Rondeau <tom@trondeau.com>2014-07-11 10:03:27 -0400
commit62831422ae4b2a817a997153468008db38e06598 (patch)
tree4aca7097fbfae8bf1890194c90ad43e44b572db5 /grc/python/FlowGraph.py
parent2bb2b31476cb33e9c1bbb196fffba3a857b4f75a (diff)
parent6d9dfac64806ad2d1eb77a9ae909e4b9d66ea7fd (diff)
Merge remote-tracking branch 'gnuradio-wg-grc/grc_variable_blocks'
Diffstat (limited to 'grc/python/FlowGraph.py')
-rw-r--r--grc/python/FlowGraph.py2
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