report: simplify x = x <op> y to x <op>= y (#716)

Signed-off-by: Iskander Sharipov <quasilyte@gmail.com>
This commit is contained in:
Iskander (Alex) Sharipov
2018-10-04 06:35:02 +03:00
committed by Kota Kanbe
parent ed5f98d6f0
commit d5c92cbcb3
3 changed files with 3 additions and 3 deletions

View File

@@ -144,7 +144,7 @@ func putObject(svc *s3.S3, k string, b []byte) error {
if b, err = gz(b); err != nil {
return err
}
k = k + ".gz"
k += ".gz"
}
putObjectInput := &s3.PutObjectInput{