Style fixes.

This commit is contained in:
Andrey Smirnov
2014-10-14 18:20:09 +04:00
parent 6ac0658478
commit 0afb1f4306
+3 -5
View File
@@ -10,15 +10,13 @@ import (
func aptlyConfigShow(cmd *commander.Command, args []string) error { func aptlyConfigShow(cmd *commander.Command, args []string) error {
config := context.Config() config := context.Config()
pretty_json, err := json.MarshalIndent(config, "", " ") prettyJSON, err := json.MarshalIndent(config, "", " ")
if err != nil { if err != nil {
return fmt.Errorf("unable to parse the config file: %s", err) return fmt.Errorf("unable to dump the config file: %s", err)
} }
config_to_string := string(pretty_json) fmt.Println(string(prettyJSON))
fmt.Println(config_to_string)
return nil return nil
} }