From 0847f8e84be690ad478a425565ab4e6cc9f8371a Mon Sep 17 00:00:00 2001 From: Guillermo Arribas Date: Mon, 23 Oct 2017 13:22:36 -0300 Subject: [PATCH] flake8 error on master branch (fixes #5298) Signed-off-by: Guillermo Arribas --- compose/bundle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/bundle.py b/compose/bundle.py index 505ce91fed..937a3708a9 100644 --- a/compose/bundle.py +++ b/compose/bundle.py @@ -121,7 +121,7 @@ def get_image_digest(service, allow_push=False): def push_image(service): try: digest = service.push() - except: + except Exception: log.error( "Failed to push image for service '{s.name}'. Please use an " "image tag that can be pushed to a Docker "