# HG changeset patch # User Goffi # Date 1597525439 -7200 # Node ID 76b7ae23dc66a5cf0501d906ecbfb744b126da74 # Parent ab556b1c2ca4a4349b933255346fedf3182d91d5 wokkel (rsm): don't convert value to str anymore in RSMResponse.toDict diff -r ab556b1c2ca4 -r 76b7ae23dc66 sat_tmp/wokkel/rsm.py --- 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