Skip to content

Commit

Permalink
Remove a trailing dot
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Linz committed Jun 15, 2018
1 parent b7a5de0 commit 51b2810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/s3_driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func (d S3Driver) PutFile(key string, data io.Reader, appendMode bool) (int64, e
Body: data,
})
if err != nil {
err := fmt.Errorf("Failed to put object %q because reading from source failed.", fqdn)
err := fmt.Errorf("Failed to put object %q because reading from source failed", fqdn)
logrus.WithFields(logrus.Fields{"time": timestamp, "object": fqdn, "action": "PUT", "error": err}).Error(err)
return -1, err
}
Expand Down

0 comments on commit 51b2810

Please sign in to comment.