diff options
Diffstat (limited to 'grc/gui/Utils.py')
-rw-r--r-- | grc/gui/Utils.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/grc/gui/Utils.py b/grc/gui/Utils.py index b68c19c4e1..407c875a87 100644 --- a/grc/gui/Utils.py +++ b/grc/gui/Utils.py @@ -101,4 +101,10 @@ def parse_template(tmpl_str, **kwargs): a string of the parsed template """ kwargs['encode'] = gobject.markup_escape_text + #try: + # cat = str(Template(tmpl_str, kwargs)) + #except TypeError: + # print 'guppy' + # print tmpl_str + # print str(kwargs['param'].get_error_messages()) return str(Template(tmpl_str, kwargs)) |