From 8d7e4cd38828ebac1e19ad3065e2434785a26c8f Mon Sep 17 00:00:00 2001 From: David Wu Date: Tue, 4 Sep 2018 17:35:16 -0700 Subject: [PATCH] fix goimports and gofmt Signed-off-by: David Wu --- registry/auth/htpasswd/access.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/registry/auth/htpasswd/access.go b/registry/auth/htpasswd/access.go index 034c503a0..eddf7ac3d 100644 --- a/registry/auth/htpasswd/access.go +++ b/registry/auth/htpasswd/access.go @@ -10,13 +10,14 @@ import ( "crypto/rand" "encoding/base64" "fmt" - "golang.org/x/crypto/bcrypt" "net/http" "os" "path/filepath" "sync" "time" + "golang.org/x/crypto/bcrypt" + dcontext "github.com/docker/distribution/context" "github.com/docker/distribution/registry/auth" )