Skip to content

Commit

Permalink
Merge pull request #1197 from StochSS/develop
Browse files Browse the repository at this point in the history
Release 2.3.9
  • Loading branch information
seanebum authored Jul 27, 2021
2 parents 0f0328c + bfe9808 commit 5f81f1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# @website https://github.com/stochss/stochss
# =============================================================================

__version__ = '2.3.8'
__version__ = '2.3.9'
__title__ = 'StochSS'
__description__ = 'StochSS is an integrated development environment (IDE) \
for simulation of biochemical networks.'
Expand Down
1 change: 1 addition & 0 deletions client/templates/pages/home.pug
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ section.page
li Import SBML Models
li Parameter Sweep Workflows
li Spatial Simulations
li Publish Models and Notebooks

div.col-md-5

Expand Down
2 changes: 1 addition & 1 deletion stochss/handlers/util/stochss_folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def upload_from_link(self, remote_path):
'''
ext = remote_path.split('.').pop()
body = requests.get(remote_path, allow_redirects=True).content
if "download-presentation" in remote_path:
if "download_presentation" in remote_path:
if ext in ("mdl", "smdl"):
file = f"{json.loads(body)['name']}.{ext}"
elif ext == "ipynb":
Expand Down

0 comments on commit 5f81f1f

Please sign in to comment.