summaryrefslogtreecommitdiff
path: root/grc/core/Constants.py
diff options
context:
space:
mode:
authorJosh Morman <jmorman@perspectalabs.com>2019-05-27 22:38:39 -0400
committerMartin Braun <martin.braun@ettus.com>2019-05-28 19:32:51 -0700
commitc8ce648df3be9594401587c628cfc7cbb2e2e1c9 (patch)
treee2804de919b7312ac1d596d53bb591a0f2cff8b7 /grc/core/Constants.py
parentcea8c170bcda208ed802e77ee2fb7cc69eface7a (diff)
grc: function_probe_block extra quotes with block_id
Due to the way stringify_flag is called, the block_id, function_name and function_args are all given extra quotes which cause issues when generating the python source change/add new dtypes for function_probe Fixes #1783
Diffstat (limited to 'grc/core/Constants.py')
-rw-r--r--grc/core/Constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/Constants.py b/grc/core/Constants.py
index 127e0e05f9..99e6767447 100644
--- a/grc/core/Constants.py
+++ b/grc/core/Constants.py
@@ -61,7 +61,7 @@ PARAM_TYPE_NAMES = {
'complex_vector', 'real_vector', 'float_vector', 'int_vector',
'hex', 'string', 'bool',
'file_open', 'file_save', '_multiline', '_multiline_python_external',
- 'id', 'stream_id',
+ 'id', 'stream_id','name',
'gui_hint',
'import',
}