File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 19
19
import textwrap
20
20
import uuid
21
21
22
- from oslo . serialization import jsonutils
22
+ from oslo_serialization import jsonutils
23
23
from oslo_utils import encodeutils
24
24
from oslo_utils import importutils
25
25
import prettytable
Original file line number Diff line number Diff line change 17
17
"""
18
18
19
19
try :
20
- import oslo . i18n
20
+ import oslo_i18n
21
21
22
22
# NOTE(dhellmann): This reference to o-s-l-o will be replaced by the
23
23
# application name when this module is synced into the separate
24
24
# repository. It is OK to have more than one translation function
25
25
# using the same domain, since there will still only be one message
26
26
# catalog.
27
- _translators = oslo . i18n .TranslatorFactory (domain = 'ceilometerclient' )
27
+ _translators = oslo_i18n .TranslatorFactory (domain = 'ceilometerclient' )
28
28
29
29
# The primary translation function using the well-known name "_"
30
30
_ = _translators .primary
Original file line number Diff line number Diff line change 40
40
import abc
41
41
import copy
42
42
43
- from oslo . utils import strutils
43
+ from oslo_utils import strutils
44
44
import six
45
45
from six .moves .urllib import parse
46
46
Original file line number Diff line number Diff line change 34
34
except ImportError :
35
35
import json
36
36
37
- from oslo . utils import encodeutils
38
- from oslo . utils import importutils
37
+ from oslo_utils import encodeutils
38
+ from oslo_utils import importutils
39
39
import requests
40
40
41
41
from ceilometerclient .openstack .common ._i18n import _
Original file line number Diff line number Diff line change 24
24
#
25
25
########################################################################
26
26
27
- from oslo . utils import encodeutils
27
+ from oslo_utils import encodeutils
28
28
import six
29
29
30
30
from ceilometerclient .openstack .common ._i18n import _
Original file line number Diff line number Diff line change 24
24
import sys
25
25
import textwrap
26
26
27
- from oslo . utils import encodeutils
28
- from oslo . utils import strutils
27
+ from oslo_utils import encodeutils
28
+ from oslo_utils import strutils
29
29
import prettytable
30
30
import six
31
31
from six import moves
Original file line number Diff line number Diff line change 22
22
import functools
23
23
import json
24
24
25
- from oslo . serialization import jsonutils
25
+ from oslo_serialization import jsonutils
26
26
from oslo_utils import strutils
27
27
import six
28
28
You can’t perform that action at this time.
0 commit comments