Mercurial > p > roundup > code
changeset 6682:0b8d34b64930
issue2551205 bugfix missing _value2str
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 17 May 2022 18:05:45 -0400 |
| parents | ab2ed11c021e |
| children | 12c5ddf865b1 |
| files | roundup/configuration.py |
| diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/configuration.py Tue May 17 17:18:51 2022 -0400 +++ b/roundup/configuration.py Tue May 17 18:05:45 2022 -0400 @@ -573,6 +573,9 @@ raise OptionValueError(self, _val, "If using '*' it must be the only element.") + def _value2str(self, value): + return ','.join(value) + class MultiFilePathOption(Option): """List of space seperated File or directory path name
