summaryrefslogtreecommitdiff
path: root/grc/python/FlowGraph.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-02-06 17:01:33 -0500
committerTom Rondeau <trondeau@vt.edu>2013-02-06 17:01:33 -0500
commit6698c6db049196f0bebc85040a579ee10475a058 (patch)
treedcccd58d2cd744e76548735e1f444a786a484613 /grc/python/FlowGraph.py
parentf9d72e0a0c966322ae14be0f06658ffacefd15fd (diff)
ctrlport: When creating a ControlPort monitor app, the key /must/ include 'ctrlport_monitor' in it somewhere.
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 95cf9950a9..1080006cf5 100644
--- a/grc/python/FlowGraph.py
+++ b/grc/python/FlowGraph.py
@@ -24,7 +24,7 @@ import re
_variable_matcher = re.compile('^(variable\w*)$')
_parameter_matcher = re.compile('^(parameter)$')
-_monitors_searcher = re.compile('(monitor)')
+_monitors_searcher = re.compile('(ctrlport_monitor)')
class FlowGraph(_FlowGraph, _GUIFlowGraph):