Skip to content

Commit

Permalink
cli: Fix error message when the host platform is unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaty committed Jul 2, 2024
1 parent 8b54633 commit b248541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cogite/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _main():
client = api.get_client(configuration, ctx)

if not client:
sys.exit(f"Could not find any backend for platform '{configuration.platform}'")
sys.exit(f"Could not find any backend for platform '{configuration.host_platform}'")

args = dict(vars(parse_args()))
callback = args.pop('callback')
Expand Down

0 comments on commit b248541

Please sign in to comment.