progression
parent
6af8af629b
commit
f106442299
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
type File string
|
type File string
|
||||||
|
|
@ -140,5 +141,5 @@ func readTransactionDescription(r io.Reader) (string, error) {
|
||||||
}
|
}
|
||||||
result = append(result, firstByte[0])
|
result = append(result, firstByte[0])
|
||||||
}
|
}
|
||||||
return string(result), nil
|
return strings.TrimSpace(string(result)), nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue