Add newline to error message
This commit is contained in:
parent
3d7dc94c57
commit
acddf29e45
|
@ -37,7 +37,7 @@ func PollFeed(uri string, timeout int, cr xmlx.CharsetFunc) {
|
|||
|
||||
for {
|
||||
if err := feed.Fetch(uri, cr); err != nil {
|
||||
fmt.Fprintf(os.Stderr, "[e] %s: %s", uri, err)
|
||||
fmt.Fprintf(os.Stderr, "[e] %s: %s\n", uri, err)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue