We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 665877a commit 3a1fc35Copy full SHA for 3a1fc35
modelseedpy/helpers.py
@@ -21,7 +21,7 @@ def get_or_download_file(filename, k, value, config):
21
os.makedirs(folder_path)
22
if not os.path.exists(file_path):
23
logger.warning("downloading data file to: %s", file_path)
24
- url = "https://bioseed.mcs.anl.gov/~fxliu/modelseedpy/" + filename
+ url = "https://bioseed.mcs.anl.gov/~fliu/modelseedpy/" + filename
25
r = requests.get(url, allow_redirects=True)
26
with open(file_path, "wb") as fh:
27
fh.write(r.content)
0 commit comments