Skip to content

Commit

Permalink
Fixed condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmessiaen authored and Hartorn committed Oct 11, 2023
1 parent 5326fb3 commit 855fda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion giskard/commands/cli_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def _start(attached=False, skip_version_check=False, version=None):

version = get_version(version)

if not skip_version_check and version == giskard.get_version():
if not skip_version_check and version != giskard.get_version():
logger.error(
f"""
You're trying to start the server with version '{version}' while currently using Giskard '{giskard.get_version()}'
Expand Down

0 comments on commit 855fda3

Please sign in to comment.