Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Add newline to missing environment key output
Browse files Browse the repository at this point in the history
  • Loading branch information
jung-kurt committed Dec 20, 2018
1 parent 7981a60 commit a6a6f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cgi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func checkEnv(envStr string) (err error) {
_, ok := mp[k]
if !ok {
// err = fmt.Errorf("environment key \"%s\" not found in CGI environment", k)
fmt.Printf("environment key \"%s\" not found in CGI environment", k)
fmt.Printf("environment key \"%s\" not found in CGI environment\n", k)
}
}
}
Expand Down

0 comments on commit a6a6f88

Please sign in to comment.