diff options
Diffstat (limited to 'config/binds.go')
-rw-r--r-- | config/binds.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/binds.go b/config/binds.go index 55814cd2..b219adad 100644 --- a/config/binds.go +++ b/config/binds.go @@ -101,7 +101,7 @@ var Binds = defaultBindsConfig() func parseBinds(root string) error { filename := path.Join(root, "binds.conf") if _, err := os.Stat(filename); errors.Is(err, os.ErrNotExist) { - fmt.Printf("%s not found, installing the system default", filename) + fmt.Printf("%s not found, installing the system default\n", filename) if err := installTemplate(root, "binds.conf"); err != nil { return err } |