summaryrefslogtreecommitdiff
path: root/grc/core/Port.py
diff options
context:
space:
mode:
authorSebastian Koslowski <koslowski@kit.edu>2017-03-22 13:28:25 +0100
committerSebastian Koslowski <koslowski@kit.edu>2017-03-22 14:18:58 +0100
commit114b39a434c13a239f33ff65cebce10fcebd26ec (patch)
treeea804424598f114435e489cb92c99a127bed7cbf /grc/core/Port.py
parent6299451dc055424e644f389e0e0bc0b1682fe84b (diff)
grc: fix regressions from gtk3 merge
Diffstat (limited to 'grc/core/Port.py')
-rw-r--r--grc/core/Port.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/Port.py b/grc/core/Port.py
index 14dd9cd09f..9ca443efa1 100644
--- a/grc/core/Port.py
+++ b/grc/core/Port.py
@@ -67,7 +67,7 @@ def _sources_from_virtual_source_port(source_port, _traversed=None):
if not block.is_virtual_source():
return [source_port] # nothing to resolve, we're done
- stream_id = block.get_parqam('stream_id').get_value()
+ stream_id = block.get_param('stream_id').get_value()
# currently the validation does not allow multiple virtual sinks and one virtual source
# but in the future it may...