summaryrefslogtreecommitdiff
path: root/nova/cache_utils.py
diff options
context:
space:
mode:
authorSean Dague <sean@dague.net>2017-04-07 14:58:34 -0400
committerSean Dague <sean@dague.net>2017-04-10 14:48:07 +0000
commit1cda41f4a305fae265fd78e0218d65823fdacbf3 (patch)
treee934a21c8f00775681177a0479ac025d6bf47ad5 /nova/cache_utils.py
parent3092d2adcb6bab0bf39b01ea0561ec7e6a3990fd (diff)
downloadnova-1cda41f4a305fae265fd78e0218d65823fdacbf3.tar.gz
remove log translation tags from nova.cells
Change-Id: Iad2ad3b865873ca510edb9a6e93b6d44d9b24ed9
Diffstat (limited to 'nova/cache_utils.py')
-rw-r--r--nova/cache_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/cache_utils.py b/nova/cache_utils.py
index e764738a51..6a5bd4418a 100644
--- a/nova/cache_utils.py
+++ b/nova/cache_utils.py
@@ -20,7 +20,7 @@ from oslo_cache import core as cache
from oslo_log import log as logging
import nova.conf
-from nova.i18n import _, _LW
+from nova.i18n import _
CONF = nova.conf.CONF
@@ -31,7 +31,7 @@ WEEK = 604800
def _warn_if_null_backend():
if CONF.cache.backend == 'dogpile.cache.null':
- LOG.warning(_LW("Cache enabled with backend dogpile.cache.null."))
+ LOG.warning("Cache enabled with backend dogpile.cache.null.")
def get_memcached_client(expiration_time=0):