From 8fba438cf08a2d15df5886ccf4604bc285d262b2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 2 Jul 2014 17:04:48 -0700 Subject: [PATCH] terraform: bring order to the world /cc @pearkes --- terraform/plan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/plan.go b/terraform/plan.go index 59cfe1d56..8b6f37a9d 100644 --- a/terraform/plan.go +++ b/terraform/plan.go @@ -12,8 +12,8 @@ import ( ) func init() { - gob.Register(make([]map[string]interface{}, 0)) gob.Register(make([]interface{}, 0)) + gob.Register(make([]map[string]interface{}, 0)) } // PlanOpts are the options used to generate an execution plan for