This is an automated email from the ASF dual-hosted git repository.
brandonwilliams pushed a commit to branch cassandra-3.0
in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/cassandra-3.0 by this push:
new 0b34ff6a0b ninja: fix format arg order
0b34ff6a0b is described below
commit 0b34ff6a0bce3089664c87e5f61dd02b4a1d6b5e
Author: Brandon Williams <[email protected]>
AuthorDate: Fri Aug 18 13:56:51 2023 -0500
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):
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]