removed extra parentheses

This commit is contained in:
Panagiotis Moustafellos 2015-10-08 15:48:04 +03:00
parent f229be7a60
commit ce511d53db

View file

@ -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
}