You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2011/07/21 13:42:43 UTC

svn commit: r1149131 - /incubator/deltacloud/trunk/client/bin/deltacloudc

Author: mfojtik
Date: Thu Jul 21 11:42:42 2011
New Revision: 1149131

URL: http://svn.apache.org/viewvc?rev=1149131&view=rev
Log:
Fixed 'warning: don't put space before argument parentheses' in deltacloudc

Modified:
    incubator/deltacloud/trunk/client/bin/deltacloudc

Modified: incubator/deltacloud/trunk/client/bin/deltacloudc
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/client/bin/deltacloudc?rev=1149131&r1=1149130&r2=1149131&view=diff
==============================================================================
--- incubator/deltacloud/trunk/client/bin/deltacloudc (original)
+++ incubator/deltacloud/trunk/client/bin/deltacloudc Thu Jul 21 11:42:42 2011
@@ -179,7 +179,7 @@ if options[:collection] and options[:ope
     params.merge!('metadata'=>options[:blob_metadata]) unless options[:blob_metadata].nil?
     case options[:operation]
         when 'show' then puts format(client.send( options[:collection], params))
-        when 'data' then puts (client.blob_data(params))
+        when 'data' then puts client.blob_data(params)
         when 'create' then
             invalid_usage("Specify the location of the new blob data (full local path) using -f option") unless options[:file_path]
             params.merge!('file_path'=>options[:file_path])