summaryrefslogtreecommitdiff
path: root/grc/python/FlowGraph.py
diff options
context:
space:
mode:
authorSebastian Koslowski <koslowski@kit.edu>2014-06-27 14:33:22 +0200
committerSebastian Koslowski <koslowski@kit.edu>2014-07-04 08:57:35 +0200
commit81899991d0f658e943fcd6abd2a624aa4268b7d1 (patch)
tree2782c408b77cd3d27551bbc163e2603274359998 /grc/python/FlowGraph.py
parentdf8695346d527692fc5c55ceaed299f3974fd84c (diff)
grc: design time values for object-like variables
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 8573f33fc4..6d95db86e7 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