diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-06 17:01:33 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-06 17:01:33 -0500 |
commit | 6698c6db049196f0bebc85040a579ee10475a058 (patch) | |
tree | dcccd58d2cd744e76548735e1f444a786a484613 /grc/python/FlowGraph.py | |
parent | f9d72e0a0c966322ae14be0f06658ffacefd15fd (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.py | 2 |
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): |