mirror of https://github.com/rq/rq.git
fix decode
This commit is contained in:
parent
cd0230cae3
commit
1795e1ee53
|
@ -407,7 +407,7 @@ class Job(object):
|
|||
|
||||
self.created_at = to_date(as_text(obj.get('created_at')))
|
||||
self.origin = as_text(obj.get('origin'))
|
||||
self.description = (as_text(obj.get('description')).decode('unicode_escape')
|
||||
self.description = (as_text(obj.get('description')).decode('utf-8')
|
||||
if obj.get('description') else None)
|
||||
self.enqueued_at = to_date(as_text(obj.get('enqueued_at')))
|
||||
self.ended_at = to_date(as_text(obj.get('ended_at')))
|
||||
|
|
Loading…
Reference in New Issue