From 4800931d556b25db34f38ea588fd11f378308b51 Mon Sep 17 00:00:00 2001 From: Eric Drechsel Date: Sun, 7 Sep 2014 19:37:19 -0700 Subject: [PATCH] fix importer bloblink ui no longer accepts ?b=blobref form Change-Id: I40fb0aa75fe1664d5b1446c0d4670a3348935c93 --- pkg/importer/importer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/importer/importer.go b/pkg/importer/importer.go index 51c95d801..c983073ae 100644 --- a/pkg/importer/importer.go +++ b/pkg/importer/importer.go @@ -170,7 +170,7 @@ func NewHost(hc HostConfig) (*Host, error) { if h.uiPrefix == "" { return template.HTML(br.String()) } - return template.HTML(fmt.Sprintf("%s", h.uiPrefix, br, br)) + return template.HTML(fmt.Sprintf("%s", h.uiPrefix, br, br)) }, }) for k, impl := range importers {