Merge "Replace assert with condition"

This commit is contained in:
Zuul 2018-01-22 17:56:31 +00:00 committed by Gerrit Code Review
commit 7d50e5fc9a
1 changed files with 1 additions and 3 deletions

View File

@ -1031,9 +1031,7 @@ class UnsetImage(command.Command):
if parsed_args.properties:
for k in parsed_args.properties:
try:
assert(k in image.keys())
except AssertionError:
if k not in image:
LOG.error(_("property unset failed, '%s' is a "
"nonexistent property "), k)
propret += 1