Merge "Fix LOG.warn to LOG.warning"

This commit is contained in:
Jenkins 2016-10-12 11:54:37 +00:00 committed by Gerrit Code Review
commit 858d5df6e3
1 changed files with 1 additions and 1 deletions

View File

@ -1180,7 +1180,7 @@ class PlatformServicesBaseClass(NovaNetworkScenarioTest):
try:
delete_method()
except Exception as exc:
LOG.warn(exc.message)
LOG.warning(exc.message)
return
if get_method:
self._wait_for_deletion(get_method, timeout, sleep)