Skip to content

Commit 924f25a

Browse files
committed
issue2551205 bugfix missing _value2str
1 parent 404cd8a commit 924f25a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

roundup/configuration.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,9 @@ def set(self, _val):
573573
raise OptionValueError(self, _val,
574574
"If using '*' it must be the only element.")
575575

576+
def _value2str(self, value):
577+
return ','.join(value)
578+
576579
class MultiFilePathOption(Option):
577580

578581
"""List of space seperated File or directory path name

0 commit comments

Comments
 (0)