Skip to content

Commit

Permalink
In JSOC get(), downloader keyword is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
jongyeob authored and Cadair committed May 31, 2015
1 parent dcbcbe5 commit fb9b33e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sunpy/net/jsoc/jsoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def check_request(self, requestIDs):
return allstatus

def get(self, jsoc_response, path=None, overwrite=False, progress=True,
max_conn=5, sleep=10):
max_conn=5, downloader=None,sleep=10):
"""
Make the request for the data in jsoc_response and wait for it to be
staged and then download the data.
Expand Down Expand Up @@ -341,7 +341,7 @@ def get(self, jsoc_response, path=None, overwrite=False, progress=True,
if u.status_code == 200 and u.json()['status'] == '0':
rID = requestIDs.pop(i)
r = self.get_request(rID, path=path, overwrite=overwrite,
progress=progress)
progress=progress,downloader=downloader)

else:
time.sleep(sleep)
Expand Down

0 comments on commit fb9b33e

Please sign in to comment.