Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Nov 23, 2023
1 parent db52729 commit 023e653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai_models_graphcast/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
except ModuleNotFoundError as e:
msg = "You need to install Graphcast from git to use this model. See README.md for details."
LOG.error(msg)
raise ModuleNotFoundError(e + msg)
raise ModuleNotFoundError(f"{msg}\n{e}")


class GraphcastModel(Model):
Expand Down

0 comments on commit 023e653

Please sign in to comment.