Make vector params interact with proxies properly.
--HG-- extra : convert_revision : a4067f07d71d2adc1ccbf4512a43ceee7b5cc3de
This commit is contained in:
parent
fb4f83809f
commit
d238b6be9d
1 changed files with 1 additions and 1 deletions
|
@ -755,7 +755,7 @@ class ParamDesc(object):
|
|||
|
||||
class VectorParamValue(list):
|
||||
def ini_str(self):
|
||||
return ' '.join([str(v) for v in self])
|
||||
return ' '.join([v.ini_str() for v in self])
|
||||
|
||||
def unproxy(self, base):
|
||||
return [v.unproxy(base) for v in self]
|
||||
|
|
Loading…
Reference in a new issue