Author: eevans
Date: Thu Dec  8 16:29:53 2011
New Revision: 1211958

URL: http://svn.apache.org/viewvc?rev=1211958&view=rev
Log:
cqlsh: fix broken help output methods

Patch by paul cannon; reviewed by eevans for CASSANDRA-3588

Modified:
    cassandra/branches/cassandra-1.0/bin/cqlsh

Modified: cassandra/branches/cassandra-1.0/bin/cqlsh
URL: 
http://svn.apache.org/viewvc/cassandra/branches/cassandra-1.0/bin/cqlsh?rev=1211958&r1=1211957&r2=1211958&view=diff
==============================================================================
--- cassandra/branches/cassandra-1.0/bin/cqlsh (original)
+++ cassandra/branches/cassandra-1.0/bin/cqlsh Thu Dec  8 16:29:53 2011
@@ -1125,7 +1125,7 @@ class Shell(cmd.Cmd):
         """
 
     def help_delete_using(self):
-        """
+        print """
         DELETE: the USING clause
 
           DELETE ... USING CONSISTENCY <consistencylevel>;
@@ -1142,7 +1142,7 @@ class Shell(cmd.Cmd):
         """
 
     def help_delete_columns(self):
-        """
+        print """
         DELETE: specifying columns
 
           DELETE col1, 'col2 name', 3 FROM ...


Reply via email to