From 1fd5dceb3524dc7dcfc8f4d4838f5c75b364b485 Mon Sep 17 00:00:00 2001 From: lcsong Date: Fri, 7 Apr 2017 08:45:04 +0800 Subject: [PATCH] Remove log translations Log messages are no longer being translated. This removes all use of the _LE, _LI, _LW and _LC translation markers to simplify logging and to avoid confusion with new contributions. See: http://lists.openstack.org/pipermail/openstack-i18n/2016-November/002574.html http://lists.openstack.org/pipermail/openstack-dev/2017-March/113365.html It will be a giant patch if all these _LE, _LI, _LW and _LC being deleted within one patch, so this patch only delete _LEi and _LC has been handled in previous patch; deletion of _LI and _LW will be in the following patches related with this one. Change-Id: I2aeb953b4b197f42a601edce67fbe5c745b9a9d8 --- sahara/i18n.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sahara/i18n.py b/sahara/i18n.py index 89c0b38..4f04291 100644 --- a/sahara/i18n.py +++ b/sahara/i18n.py @@ -31,4 +31,3 @@ _ = _translators.primary # the level. _LI = _translators.log_info _LW = _translators.log_warning -_LE = _translators.log_error