Skip to content

Commit

Permalink
fix: another typo in GitDumper
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed Sep 1, 2022
1 parent 24d780b commit 26ec40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biothings/hub/dataload/dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,7 @@ def remote_is_better(self, remotefile, localfile):

def download(self, remotefile, localfile):
self.prepare_local_folders(localfile)
cmdline = "wget %s -O %s" % (remoteurl, localfile)
cmdline = "wget %s -O %s" % (remotefile, localfile)
return_code = os.system(cmdline)
if return_code == 0:
self.logger.info("Success.")
Expand Down

0 comments on commit 26ec40d

Please sign in to comment.