diff options
author | Josh Blum <josh@joshknows.com> | 2009-09-18 02:10:13 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2009-09-18 02:10:13 -0700 |
commit | 14895064d7345c2223ff2b8ff3b9cbcdf69dd8c9 (patch) | |
tree | 0db94cb03f5ae40357760d3b16fb8d34c20b704b /grc/python/Param.py | |
parent | 3f16d0acf93bbe8da7690f209782783ae8afb1c6 (diff) |
added errors dialog to show all error messages in flow graph
Diffstat (limited to 'grc/python/Param.py')
-rw-r--r-- | grc/python/Param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/Param.py b/grc/python/Param.py index 387fab5481..1c15113152 100644 --- a/grc/python/Param.py +++ b/grc/python/Param.py @@ -254,7 +254,7 @@ class Param(_Param, _GUIParam): elif t in ('raw', 'complex', 'real', 'int', 'complex_vector', 'real_vector', 'int_vector', 'hex', 'bool'): #raise exception if python cannot evaluate this value try: e = self.get_parent().get_parent().evaluate(v) - except Exception, e: raise Exception, 'Value "%s" cannot be evaluated: %s'%(v, e) + except Exception, e: raise Exception, 'Value "%s" cannot be evaluated:\n%s'%(v, e) #raise an exception if the data is invalid if t == 'raw': return e elif t == 'complex': |