Fix the i18n import

Use new i18n import instead of old import.

The i18n support before https://review.openstack.org/#/c/182835/
missed one file.

Closes-Bug: #1460877
Change-Id: Ic795155ff0da8b278d9a50f29068d7fa628f59b7
This commit is contained in:
Kai Qiang Wu(Kennan) 2015-06-02 10:16:48 +08:00
parent c317bea209
commit ac94242495
1 changed files with 1 additions and 1 deletions

View File

@ -21,9 +21,9 @@ from magnum.common import docker_utils
from magnum.common import exception
from magnum.common import utils
from magnum.conductor.handlers.common import docker_client
from magnum.i18n import _LE
from magnum import objects
from magnum.objects import container as obj_container
from magnum.openstack.common._i18n import _LE
LOG = logging.getLogger(__name__)
CONF = cfg.CONF