Skip to content

Commit

Permalink
replace newline char because it would result in not replacing previou…
Browse files Browse the repository at this point in the history
…s output
  • Loading branch information
marcelja committed Aug 19, 2021
1 parent e72538a commit 33d38b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deleter.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ func (actRead *activityReader) UpdateOutputRead(month int) bool {
str += " "
}
}
str += " Elements found:\t" + strconv.Itoa(len(actRead.deleteElements)) + "\n"
str += " Elements found:\t" + strconv.Itoa(len(actRead.deleteElements)) + "\t"
fmt.Printf(str)
return currentMonthSkip
}
Expand Down

0 comments on commit 33d38b4

Please sign in to comment.