You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 07:47:29 UTC

svn commit: r1131907 - /incubator/mesos/trunk/src/configurator.cpp

Author: benh
Date: Sun Jun  5 05:47:29 2011
New Revision: 1131907

URL: http://svn.apache.org/viewvc?rev=1131907&view=rev
Log:
pretty printing...

Modified:
    incubator/mesos/trunk/src/configurator.cpp

Modified: incubator/mesos/trunk/src/configurator.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/configurator.cpp?rev=1131907&r1=1131906&r2=1131907&view=diff
==============================================================================
--- incubator/mesos/trunk/src/configurator.cpp (original)
+++ incubator/mesos/trunk/src/configurator.cpp Sun Jun  5 05:47:29 2011
@@ -236,7 +236,7 @@ string Configurator::getUsage() const 
 
   // construct string for the first column and get size of column
   foreachpair (const string& key, const Option& opt, options) {
-    string val = "--" + key;
+    string val = "  --" + key;
     if (!opt.validator->isBool())
       val += "=VAL";