From d4600a7716cd729c6b246745aae7c279691e947c Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Fri, 4 Oct 2019 11:19:45 +0200 Subject: [PATCH] fix go imports --- builder/amazon/common/template_funcs.go | 2 -- builder/azure/common/template_funcs.go | 2 -- builder/googlecompute/template_funcs.go | 2 -- 3 files changed, 6 deletions(-) diff --git a/builder/amazon/common/template_funcs.go b/builder/amazon/common/template_funcs.go index eee77dca2..14dd65d83 100644 --- a/builder/amazon/common/template_funcs.go +++ b/builder/amazon/common/template_funcs.go @@ -3,8 +3,6 @@ package common import ( "bytes" "text/template" - - packertpl "github.com/hashicorp/packer/common/template" ) func isalphanumeric(b byte) bool { diff --git a/builder/azure/common/template_funcs.go b/builder/azure/common/template_funcs.go index b9b8fe1cb..faccd4f07 100644 --- a/builder/azure/common/template_funcs.go +++ b/builder/azure/common/template_funcs.go @@ -3,8 +3,6 @@ package common import ( "bytes" "text/template" - - packertpl "github.com/hashicorp/packer/common/template" ) func isValidByteValue(b byte) bool { diff --git a/builder/googlecompute/template_funcs.go b/builder/googlecompute/template_funcs.go index 3b8129861..37557180f 100644 --- a/builder/googlecompute/template_funcs.go +++ b/builder/googlecompute/template_funcs.go @@ -3,8 +3,6 @@ package googlecompute import ( "strings" "text/template" - - packertpl "github.com/hashicorp/packer/common/template" ) func isalphanumeric(b byte) bool {