[FIX] Fixed comma and colon in workflow string generation.

bzr revid: jth@openerp.com-20100318224432-w0t81ok5hh3fdlla
This commit is contained in:
Julien Thewys 2010-03-18 23:44:32 +01:00
parent d4d1302fae
commit 986a1dbdbf
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ class workflow(yaml.YAMLObject):
self.ref = ref
self.action=action
def __repr__(self):
return '!workflow {model: %s, action: %s ref: %s}:' % (str(self.model,), str(self.action,), str(self.ref,))
return '!workflow {model: %s, action: %s, ref: %s}' % (str(self.model,), str(self.action,), str(self.ref,))
class ref(yaml.YAMLObject):
yaml_tag = u'!ref'