From 2cc61b680a44ee41fe651edea141d2840e9172af Mon Sep 17 00:00:00 2001 From: Nathan LaFreniere Date: Thu, 31 Dec 2015 12:25:40 -0800 Subject: [PATCH] remove some extraneous newlines --- aws.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws.go b/aws.go index eba0e08..f8b5b68 100644 --- a/aws.go +++ b/aws.go @@ -205,7 +205,7 @@ func (a *AWS) Upload(local, remote string) error { } func (a *AWS) Redirect(path, location string) error { - debug("Adding redirect from \"%s\" to \"%s\"\n", path, location) + debug("Adding redirect from \"%s\" to \"%s\"", path, location) _, err := a.client.PutObject(&s3.PutObjectInput{ Bucket: aws.String(a.vargs.Bucket), Key: aws.String(path), @@ -216,7 +216,7 @@ func (a *AWS) Redirect(path, location string) error { } func (a *AWS) Delete(remote string) error { - debug("Removing remote file \"%s\"\n", remote) + debug("Removing remote file \"%s\"", remote) _, err := a.client.DeleteObject(&s3.DeleteObjectInput{ Bucket: aws.String(a.vargs.Bucket), Key: aws.String(remote),