summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-06-19 19:13:08 +0000
committerGerrit Code Review <review@openstack.org>2017-06-19 19:13:08 +0000
commit4682d403d2d62d8ee0b71e3b4fcd76ca3f25b3e4 (patch)
tree766655f9a50978d3c4eaa0ec5d52b23d10e4c523
parenta2d1d8ce8ac0adf7e45d87bafb54e00ec5d0acab (diff)
parent36d2358a9da2738d07f307c51171ce2973efb1c1 (diff)
downloadpython-glanceclient-4682d403d2d62d8ee0b71e3b4fcd76ca3f25b3e4.tar.gz
Merge "Remove log translations"
-rw-r--r--glanceclient/_i18n.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/glanceclient/_i18n.py b/glanceclient/_i18n.py
index a099c7f..aca52e8 100644
--- a/glanceclient/_i18n.py
+++ b/glanceclient/_i18n.py
@@ -19,13 +19,3 @@ _translators = i18n.TranslatorFactory(domain='glanceclient')
# The primary translation function using the well-known name "_"
_ = _translators.primary
-
-# Translators for log levels.
-#
-# The abbreviated names are meant to reflect the usual use of a short
-# name like '_'. The "L" is for "log" and the other letter comes from
-# the level.
-_LI = _translators.log_info
-_LW = _translators.log_warning
-_LE = _translators.log_error
-_LC = _translators.log_critical