mirror of https://github.com/kivy/kivy.git
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:
parent
60c9fdb4a4
commit
d2e93b03a0
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue