You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by db...@apache.org on 2013/10/07 02:40:35 UTC

git commit: fix format string token

Updated Branches:
  refs/heads/trunk a2edbede5 -> e43b82ba6


fix format string token


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/e43b82ba
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/e43b82ba
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/e43b82ba

Branch: refs/heads/trunk
Commit: e43b82ba6c02d305020959adfcb2189389c82261
Parents: a2edbed
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Sun Oct 6 20:39:31 2013 -0400
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Sun Oct 6 20:39:31 2013 -0400

----------------------------------------------------------------------
 src/java/org/apache/cassandra/cli/CliClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/e43b82ba/src/java/org/apache/cassandra/cli/CliClient.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/cli/CliClient.java b/src/java/org/apache/cassandra/cli/CliClient.java
index f6306dc..a299735 100644
--- a/src/java/org/apache/cassandra/cli/CliClient.java
+++ b/src/java/org/apache/cassandra/cli/CliClient.java
@@ -2827,7 +2827,7 @@ public class CliClient
         }
         catch (IllegalArgumentException e)
         {
-            String message = String.format("Function '%s' not found. Available functions: %", functionName, Function.getFunctionNames());
+            String message = String.format("Function '%s' not found. Available functions: %s", functionName, Function.getFunctionNames());
             throw new RuntimeException(message, e);
         }