Backup: Add missing newline in ouput

This commit is contained in:
Tom Wiesing 2022-11-14 14:52:25 +01:00
parent 7bfcfb3510
commit 6f4f33e31f
No known key found for this signature in database

View file

@ -42,7 +42,7 @@ func (exporter *Exporter) PruneExports(io stream.IOStream) error {
// assemble path, and then remove the file! // assemble path, and then remove the file!
path := filepath.Join(sPath, entry.Name()) path := filepath.Join(sPath, entry.Name())
io.Printf("Removing %s cause it is older than %d days", path, exporter.Config.MaxBackupAge) io.Printf("Removing %s cause it is older than %d days\n", path, exporter.Config.MaxBackupAge)
if err := exporter.Still.Environment.Remove(path); err != nil { if err := exporter.Still.Environment.Remove(path); err != nil {
return err return err