Merge "Python 3 deprecated the logger.warn method in favor of warning"

This commit is contained in:
Jenkins 2016-01-05 09:07:21 +00:00 committed by Gerrit Code Review
commit eef4e8f628

View File

@ -136,7 +136,7 @@ def image_update(request, image_id, **kwargs):
msg = (('Failed to remove temporary image file '
'%(file)s (%(e)s)') %
dict(file=filename, e=str(e)))
LOG.warn(msg)
LOG.warning(msg)
def image_create(request, **kwargs):