Skip to content

Commit b2f54c9

Browse files
committed
Fix bug listing jobs
1 parent 52f2db7 commit b2f54c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ravenpackapi/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def list_jobs(self, start_date, end_date, status=None):
127127
"end_date": as_datetime_str(end_date),
128128
"status": status
129129
})
130-
return [Job(self, job) for job in response.json()['jobs']]
130+
return [Job(self, **job) for job in response.json()['jobs']]
131131

132132
def create_dataset(self, dataset):
133133
# be sure to create a copy

0 commit comments

Comments
 (0)