From: Attila Fazekas Date: Tue, 11 Mar 2014 20:25:45 +0000 (+0100) Subject: cinder-rtstool imports a not existing module X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=3f7c62e91c25ba106371dfc2d04f3e28f4e64665;p=openstack-build%2Fcinder-build.git cinder-rtstool imports a not existing module cinder.openstack.common.gettextutils should be imported in cinder-rtstool instead of gettextutils. Change-Id: I6ce047100c967d72dc31ced0903bc4ad38fecaa4 --- diff --git a/bin/cinder-rtstool b/bin/cinder-rtstool index 6cbf44472..057d17188 100755 --- a/bin/cinder-rtstool +++ b/bin/cinder-rtstool @@ -16,12 +16,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -import gettextutils import re import sys import rtslib +from cinder.openstack.common import gettextutils gettextutils.enable_lazy() gettextutils.install('cinder-rtstool', lazy=True)