Improve fix for issue #20300.

This commit is contained in:
Larry Hastings 2014-01-19 03:01:23 -08:00
parent c4fe092bc3
commit 665757847e
1 changed files with 1 additions and 1 deletions

View File

@ -3448,7 +3448,7 @@ class DSLParser:
a.append('=')
value = p.converter.py_default
if not value:
value = str(p.converter.default)
value = repr(p.converter.default)
a.append(value)
s = fix_right_bracket_count(p.right_bracket_count)
s += "".join(a)