Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Adding a newline to the end of solve err #299

Merged
merged 1 commit into from
Mar 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/dep/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func isStdLib(path string) bool {
// TODO solve failures can be really creative - we need to be similarly creative
// in handling them and informing the user appropriately
func handleAllTheFailuresOfTheWorld(err error) {
fmt.Printf("solve error: %s", err)
fmt.Printf("solve error: %s\n", err)
}

func writeFile(path string, in json.Marshaler) error {
Expand Down