Merge "Fix the rendering of item entries" into feature/zuulv3
diff --git a/zuul/executor/client.py b/zuul/executor/client.py
index cc2a215..02a0105 100644
--- a/zuul/executor/client.py
+++ b/zuul/executor/client.py
@@ -183,9 +183,9 @@
                 canonical_hostname=i.change.project.canonical_hostname,
                 canonical_name=i.change.project.canonical_name)
             if hasattr(i.change, 'number'):
-                d['change'] = i.change.number
+                d['change'] = str(i.change.number)
             if hasattr(i.change, 'patchset'):
-                d['patchset'] = i.change.number
+                d['patchset'] = str(i.change.patchset)
             if hasattr(i.change, 'branch'):
                 d['branch'] = i.change.branch
             zuul_params['items'].append(d)