summaryrefslogtreecommitdiff
path: root/oslo_db/concurrency.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_db/concurrency.py')
-rw-r--r--oslo_db/concurrency.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/oslo_db/concurrency.py b/oslo_db/concurrency.py
index 07ede0a..87c7a86 100644
--- a/oslo_db/concurrency.py
+++ b/oslo_db/concurrency.py
@@ -19,7 +19,6 @@ import threading
from oslo_config import cfg
-from oslo_db._i18n import _LE
from oslo_db import api
@@ -61,8 +60,8 @@ class TpoolDbapiWrapper(object):
try:
from eventlet import tpool
except ImportError:
- LOG.exception(_LE("'eventlet' is required for "
- "TpoolDbapiWrapper."))
+ LOG.exception("'eventlet' is required for "
+ "TpoolDbapiWrapper.")
raise
self._db_api = tpool.Proxy(db_api)
else: