diff options
author | kong wei <kong.wei2@zte.com.cn> | 2017-03-04 16:21:26 +0000 |
---|---|---|
committer | kong wei <kong.wei2@zte.com.cn> | 2017-03-04 17:51:48 +0000 |
commit | 80cead48bcb3fef19c021e91746e747d162ca626 (patch) | |
tree | 2f1248845b26f815a896cdc99098a9ccca8de6b7 /api | |
parent | 74c631c6dae08d463f0d4c3953a1addcb187d090 (diff) |
cmd can call oslo_i18n.enable_lazy directly.
Change-Id: I09949cd6a35fca1fff9568bf6608b29bb59ddb3d
Signed-off-by: Kong Wei<kong.wei2@zte.com.cn>
Diffstat (limited to 'api')
-rw-r--r-- | api/escalator/cmd/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/api/escalator/cmd/__init__.py b/api/escalator/cmd/__init__.py index 871224d..2e1b10b 100644 --- a/api/escalator/cmd/__init__.py +++ b/api/escalator/cmd/__init__.py @@ -12,5 +12,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -from escalator import i18n -i18n.enable_lazy() +import oslo_i18n + +oslo_i18n.enable_lazy() |