From 0b34ff6a0bce3089664c87e5f61dd02b4a1d6b5e Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Fri, 18 Aug 2023 13:56:51 -0500 Subject: [PATCH] ninja: fix format arg order --- bin/cqlsh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cqlsh.py b/bin/cqlsh.py index f9fcc656d5..d4b3bfc473 100644 --- a/bin/cqlsh.py +++ b/bin/cqlsh.py @@ -825,7 +825,7 @@ class Shell(cmd.Cmd): if extra: baseversion = baseversion[0:extra] if baseversion != build_version: - print("WARNING: cqlsh was built against {}, but this server is {}. All features may not work!".format(baseversion, build_version)) + print("WARNING: cqlsh was built against {}, but this server is {}. All features may not work!".format(build_version, baseversion)) @property def is_using_utf8(self):