Commit 6c5c2b9c authored by Stefan Behnel's avatar Stefan Behnel

fix typo in str representation of UtilityCode objects

parent 5e62a085
......@@ -316,7 +316,7 @@ class UtilityCodeBase(object):
return code_string
def __str__(self):
return "<%s(%s)" % (type(self).__name__, self.name)
return "<%s(%s)>" % (type(self).__name__, self.name)
def get_tree(self):
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment