diff options
Diffstat (limited to 'grc/core/Param.py')
-rw-r--r-- | grc/core/Param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/Param.py b/grc/core/Param.py index 23e9daa656..907562dc4c 100644 --- a/grc/core/Param.py +++ b/grc/core/Param.py @@ -624,7 +624,7 @@ class Param(Element): """ params = [] for block in self.parent_flowgraph.get_enabled_blocks(): - params.extend(p for p in block.get_params() if p.get_type() == type) + params.extend(p for p in block.params if p.get_type() == type) return params def is_enum(self): |