mirror of https://github.com/apache/cassandra
ninja: fix format arg order
This commit is contained in:
parent
65a3d36eb9
commit
0b34ff6a0b
|
|
@ -825,7 +825,7 @@ class Shell(cmd.Cmd):
|
||||||
if extra:
|
if extra:
|
||||||
baseversion = baseversion[0:extra]
|
baseversion = baseversion[0:extra]
|
||||||
if baseversion != build_version:
|
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
|
@property
|
||||||
def is_using_utf8(self):
|
def is_using_utf8(self):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue