2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-03 04:03:25 +00:00

fix: remove print in history handler

This commit is contained in:
TorchedSammy 2022-03-05 15:23:17 -04:00
parent 058d6ac456
commit a0dff5babf
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -24,7 +24,6 @@ func newFileHistory() (*fileHistory, error) {
lines := strings.Split(string(data), "\n")
for i, l := range lines {
if i == len(lines) - 1 {
println(i, l)
continue
}
itms = append(itms, l)