From ce511d53dbfbd0a5f74d4e2df297d338abebb829 Mon Sep 17 00:00:00 2001 From: Panagiotis Moustafellos Date: Thu, 8 Oct 2015 15:48:04 +0300 Subject: [PATCH] removed extra parentheses --- resource_docker_container_funcs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource_docker_container_funcs.go b/resource_docker_container_funcs.go index 058a4411..aa74a4e1 100644 --- a/resource_docker_container_funcs.go +++ b/resource_docker_container_funcs.go @@ -148,7 +148,7 @@ func resourceDockerContainerRead(d *schema.ResourceData, meta interface{}) error } if container.State.Running || - (!container.State.Running && !d.Get("must_run").(bool)) { + !container.State.Running && !d.Get("must_run").(bool) { break }