ninja: fix format arg order

This commit is contained in:
Brandon Williams 2023-08-18 13:56:51 -05:00
parent 65a3d36eb9
commit 0b34ff6a0b
1 changed files with 1 additions and 1 deletions

View File

@ -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):