Mercurial > sat_tmp
changeset 74:76b7ae23dc66
wokkel (rsm): don't convert value to str anymore in RSMResponse.toDict
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 15 Aug 2020 23:03:59 +0200 |
parents | ab556b1c2ca4 |
children | 4b08108560e3 |
files | sat_tmp/wokkel/rsm.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/sat_tmp/wokkel/rsm.py Sat Dec 28 19:53:00 2019 +0100 +++ b/sat_tmp/wokkel/rsm.py Sat Aug 15 23:03:59 2020 +0200 @@ -315,7 +315,7 @@ for attr in ('first', 'last', 'index', 'count'): value = getattr(self, attr) if value is not None: - result[attr] = str(value) + result[attr] = value return result