Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 4257a68

Browse files
author
Max Schaefer
committed
Include newlines in messages printed by go-gen-dbscheme.
1 parent 302eb55 commit 4257a68

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extractor/cli/go-gen-dbscheme/go-gen-dbscheme.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ func main() {
2222

2323
f, err := os.Create(out)
2424
if err != nil {
25-
fmt.Fprintf(os.Stderr, "Unable to open file %s for writing.", out)
25+
fmt.Fprintf(os.Stderr, "Unable to open file %s for writing.\n", out)
2626
os.Exit(1)
2727
}
2828
dbscheme.PrintDbScheme(f)
2929
f.Close()
30-
fmt.Printf("Dbscheme written to file %s.", out)
30+
fmt.Printf("Dbscheme written to file %s.\n", out)
3131
}

0 commit comments

Comments
 (0)