Skip to content

Commit 855fda3

Browse files
kevinmessiaenHartorn
authored andcommitted
Fixed condition
1 parent 5326fb3 commit 855fda3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎giskard/commands/cli_server.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _start(attached=False, skip_version_check=False, version=None):
126126

127127
version = get_version(version)
128128

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

0 commit comments

Comments
 (0)