From 7e5a960c980c354b19a78b41bc35afbd24eb0a79 Mon Sep 17 00:00:00 2001 From: Fredrik Erlandsson Date: Wed, 24 Apr 2019 09:46:58 +0200 Subject: [PATCH] remove potential tag when pulling new image (#1053) --- hassio/docker/interface.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hassio/docker/interface.py b/hassio/docker/interface.py index 17ad48b45..73147ded0 100644 --- a/hassio/docker/interface.py +++ b/hassio/docker/interface.py @@ -78,6 +78,7 @@ class DockerInterface(CoreSysAttributes): Need run inside executor. """ image = image or self.image + image = image.partition(':')[0] # remove potential tag try: _LOGGER.info("Pull image %s tag %s.", image, tag)