Skip to content

Commit 1e2dee2

Browse files
mjrussoMatt George
authored andcommitted
improved formatting of job arguments in failure view
1 parent 04a0e87 commit 1e2dee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resweb/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def failed_jobs(self):
212212
for job in failure.all(self.resq, self._start, self._start + 20):
213213
item = job
214214
item['worker_url'] = '/workers/%s/' % job['worker']
215-
item['payload_args'] = ','.join(str(job['payload']['args']))
215+
item['payload_args'] = str(job['payload']['args'])
216216
item['payload_class'] = job['payload']['class']
217217
item['traceback'] = '\n'.join(job['backtrace'])
218218
jobs.append(item)

0 commit comments

Comments
 (0)