Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _modules/topd.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import salt.version

from salt.exceptions import SaltRenderError
from salt.utils.odict import (OrderedDict, DefaultOrderedDict)
from salt.utils.datastructures import (OrderedDict, DefaultOrderedDict)

# Import custom libs
from toputils import TopUtils # pylint: disable=E0401
Expand Down
2 changes: 1 addition & 1 deletion _utils/fileinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from itertools import (chain, compress, ) # pylint: disable=E0598

# Import salt libs
from salt.utils.odict import OrderedDict
from salt.utils.datastructures import OrderedDict

# Import custom libs
import matcher
Expand Down
2 changes: 1 addition & 1 deletion _utils/matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from itertools import (chain, compress, ) # pylint: disable=E0598

# Import salt libs
from salt.utils.odict import OrderedDict
from salt.utils.datastructures import OrderedDict

# Enable logging
log = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion _utils/pathinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os

# Import salt libs
from salt.utils.odict import OrderedDict
from salt.utils.datastructures import OrderedDict

# Import custom libs
import matcher
Expand Down
2 changes: 1 addition & 1 deletion _utils/pathutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
import salt.fileclient

from salt.exceptions import SaltRenderError
from salt.utils.odict import (OrderedDict, DefaultOrderedDict)
from salt.utils.datastructures import (OrderedDict, DefaultOrderedDict)
from salt.utils.url import urlparse

# Import custom libs
Expand Down
2 changes: 1 addition & 1 deletion _utils/toputils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

# Import salt libs
from salt.exceptions import SaltRenderError
from salt.utils.odict import (OrderedDict, DefaultOrderedDict)
from salt.utils.datastructures import (OrderedDict, DefaultOrderedDict)
from salt.utils.jinja import PrintableDict

# Import custom libs
Expand Down