parent
d0bff870a6
commit
6f9373dd66
1 changed files with 2 additions and 4 deletions
|
@ -114,10 +114,8 @@ def lines(self):
|
|||
'{0} [{1}]'.format(k, self.default(v)),
|
||||
width=self.column_widths[0]
|
||||
)
|
||||
allowed = textwrap.wrap(
|
||||
v.allowed_values,
|
||||
width=self.column_widths[1]
|
||||
)
|
||||
allowed = v.allowed_values.replace('True, False', 'on, off')
|
||||
allowed = textwrap.wrap(allowed, width=self.column_widths[1])
|
||||
description = textwrap.wrap(
|
||||
v.description,
|
||||
width=self.column_widths[2]
|
||||
|
|
Loading…
Reference in a new issue