Skip to content

Commit

Permalink
(chocolateyGH-742) choco feature list formatting
Browse files Browse the repository at this point in the history
Make the output of 'choco feature list' readable
  • Loading branch information
dtgm committed May 22, 2016
1 parent bcf21da commit 2909704
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public void feature_list(ChocolateyConfiguration configuration)
{
foreach (var feature in configFileSettings.Features)
{
this.Log().Info(() => "{0} - {1} | {2}".format_with(feature.Name, !feature.Enabled ? "[Disabled]" : "[Enabled]", feature.Description));
this.Log().Info(() => "{1} {0} - {2}".format_with(feature.Name, !feature.Enabled ? "[Disabled]" : "[Enabled] ", feature.Description));
}
}

Expand Down

0 comments on commit 2909704

Please sign in to comment.