Merge "Replace assert with condition"

This commit is contained in:
Zuul
2018-01-22 17:56:31 +00:00
committed by Gerrit Code Review

View File

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