Merge "image_uploader (attempt #3): fix images upload with no labels"

This commit is contained in:
Zuul 2020-01-15 21:36:34 +00:00 committed by Gerrit Code Review
commit 6f9b854ddc
1 changed files with 1 additions and 1 deletions

View File

@ -793,7 +793,7 @@ class BaseImageUploader(object):
tag_label = tag_from_label.format(**labels)
except ValueError as e:
raise ImageUploaderException(e)
except KeyError as e:
except (KeyError, TypeError) as e:
if fallback_tag:
tag_label = fallback_tag
else: