diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2019-05-27 22:38:39 -0400 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-05-28 19:32:51 -0700 |
commit | c8ce648df3be9594401587c628cfc7cbb2e2e1c9 (patch) | |
tree | e2804de919b7312ac1d596d53bb591a0f2cff8b7 /grc/core/params/param.py | |
parent | cea8c170bcda208ed802e77ee2fb7cc69eface7a (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/params/param.py')
-rw-r--r-- | grc/core/params/param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/params/param.py b/grc/core/params/param.py index 3e5d3f2e28..c5b3b8bb1c 100644 --- a/grc/core/params/param.py +++ b/grc/core/params/param.py @@ -208,7 +208,7 @@ class Param(Element): ######################### # ID and Enum types (not evaled) ######################### - if dtype in ('id', 'stream_id') or self.is_enum(): + if dtype in ('id', 'stream_id','name') or self.is_enum(): if self.options.attributes: expr = attributed_str(expr) for key, value in self.options.attributes[expr].items(): |