diff options
Diffstat (limited to 'grc/gui/canvas/param.py')
-rw-r--r-- | grc/gui/canvas/param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/canvas/param.py b/grc/gui/canvas/param.py index 26a3090153..2d472e1142 100644 --- a/grc/gui/canvas/param.py +++ b/grc/gui/canvas/param.py @@ -70,7 +70,7 @@ class Param(CoreParam): tooltip_lines = ['Key: ' + self.key, 'Type: ' + self.dtype] if self.is_valid(): value = self.get_evaluated() - if hasattr(value,"__len__"): + if hasattr(value, "__len__"): tooltip_lines.append('Length: {}'.format(len(value))) value = str(value) if len(value) > 100: |