diff --git a/Utils/otbKmzExport.cxx b/Utils/otbKmzExport.cxx
index 46c7aec9cdfc4153c08d3b45ff999220f2852603..20159d69a5f2eb6be11743829a472c2ccaebbe2c 100644
--- a/Utils/otbKmzExport.cxx
+++ b/Utils/otbKmzExport.cxx
@@ -29,11 +29,11 @@ int KmzExport::Describe(ApplicationDescriptor* descriptor)
 {
   descriptor->SetName("KmzExport");
   descriptor->SetDescription("Chain that Estimate a sensor model in order to export the input image to Google Earth understandable format Kmz");
-  descriptor->AddInputImage(); 
-  descriptor->AddOption("OutputProductName", "Output Kmz product", "kmz", 1, true,ApplicationDescriptor::InputImage);
-  descriptor->AddOption("TileSize", "Set the size of the tiles", "s", 1, false,ApplicationDescriptor::Integer);
-  descriptor->AddOption("LogoImage", "Add a logo to the final Kmz", "lo", 1, false,ApplicationDescriptor::FileName);
-  descriptor->AddOption("LegendImage", "Add a legend to the image exported", "le", 1, false,ApplicationDescriptor::FileName);
+  descriptor->AddInputImage();
+  descriptor->AddOption("OutputProductName", "Output Kmz product", "kmz", 1, true, ApplicationDescriptor::InputImage);
+  descriptor->AddOption("TileSize", "Set the size of the tiles", "s", 1, false, ApplicationDescriptor::Integer);
+  descriptor->AddOption("LogoImage", "Add a logo to the final Kmz", "lo", 1, false, ApplicationDescriptor::FileName);
+  descriptor->AddOption("LegendImage", "Add a legend to the image exported", "le", 1, false, ApplicationDescriptor::FileName);
  
   return EXIT_SUCCESS;
 }
@@ -73,9 +73,9 @@ int KmzExport::Execute(otb::ApplicationOptionsResult* parseResult)
     ReaderType::Pointer legendReader  = ReaderType::New();
     legendReader->SetFileName(parseResult->GetParameterString("LegendImage"));
     legendReader->Update();
-    kmzWriter->AddLegend("Input Legend",legendReader->GetOutput());
+    kmzWriter->AddLegend("Input Legend", legendReader->GetOutput());
     kmzWriter->AddLegend(legendReader->GetOutput());
-    } 
+    }
   
   // trigger the writing
   kmzWriter->Update();