diff options
Diffstat (limited to 'grc/src/platforms')
-rw-r--r-- | grc/src/platforms/python/Param.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/src/platforms/python/Param.py b/grc/src/platforms/python/Param.py index 10caa4c21..e5ac1dcf6 100644 --- a/grc/src/platforms/python/Param.py +++ b/grc/src/platforms/python/Param.py @@ -225,8 +225,8 @@ class Param(_Param): elif t in ('raw', 'complex', 'real', 'int', 'complex_vector', 'real_vector', 'int_vector', 'hex'): #raise exception if python cannot evaluate this value try: e = self.get_parent().get_parent().evaluate(v) - except: - self._add_error_message('Value "%s" cannot be evaluated.'%v) + except Exception, e: + self._add_error_message('Value "%s" cannot be evaluated: %s'%(v, e)) raise Exception #raise an exception if the data is invalid if t == 'raw': return e |