ParserRuleProperty.__repr__ was missing a space

The displayed property would look like: <ParserRuleProperty name='cols' filename=None:3value='1' watched_keys=None>
This commit is contained in:
Julien Miotte 2012-11-22 23:30:05 +01:00
parent 60c9fdb4a4
commit d2e93b03a0
1 changed files with 1 additions and 1 deletions

View File

@ -610,7 +610,7 @@ class ParserRuleProperty(object):
self.watched_keys = [x.split('.') for x in wk]
def __repr__(self):
return '<ParserRuleProperty name=%r filename=%s:%d' \
return '<ParserRuleProperty name=%r filename=%s:%d ' \
'value=%r watched_keys=%r>' % (
self.name, self.ctx.filename, self.line + 1,
self.value, self.watched_keys)