]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Disable lazy translation
authorBen Nemec <bnemec@redhat.com>
Tue, 1 Oct 2013 23:15:23 +0000 (23:15 +0000)
committerBen Nemec <bnemec@redhat.com>
Tue, 1 Oct 2013 23:16:23 +0000 (23:16 +0000)
Late in the Havana cycle bug 1225099 was found in the lazy
translation code, and to be safe it was decided to disable lazy
translation for Havana. This change does that.

Change-Id: Ia934a7df9386baf6ae8eb9ff48c24386c47ecd23
Partial-bug: 1225099

neutron/server/__init__.py

index a31cdbe403ff68d8857b1f9b24b0209d77886a8c..e8a40512876ebbb9d3c3546788ab86c7624d21c8 100755 (executable)
@@ -28,7 +28,7 @@ from neutron.common import config
 from neutron import service
 
 from neutron.openstack.common import gettextutils
-gettextutils.install('neutron', lazy=True)
+gettextutils.install('neutron', lazy=False)
 
 
 def main():