Skip to content

Commit

Permalink
Fix when updating an env (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrotsmnrd authored Aug 9, 2022
1 parent dfb4eda commit 1eb3e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda-store-server/conda_store_server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def register_environment(
self.db.add(environment)
self.db.commit()
else:
environment.description = specification.description
environment.description = specification.spec["description"]
self.db.commit()

build = self.create_build(environment.id, specification.sha256)
Expand Down

0 comments on commit 1eb3e4e

Please sign in to comment.