delimter missing

This commit is contained in:
0xdcarns 2022-02-11 11:11:28 -05:00
parent 20adc73e2a
commit c237b4d4de

View file

@ -67,7 +67,7 @@ func Dump() string {
func DumpFile(filePath string) { func DumpFile(filePath string) {
f, err := os.OpenFile(filePath, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600) f, err := os.OpenFile(filePath, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
if err != nil { if err != nil {
fmt.Println(MakeString("could not open log file", filePath)) fmt.Println(MakeString(" ", "could not open log file", filePath))
return return
} }