mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Join absolute imports
This commit is contained in:
parent
7950cc1bf7
commit
b583fb8a02
@ -3,23 +3,20 @@
|
||||
This module contains the function calls to execute command line scripts
|
||||
'''
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
# Import python libs
|
||||
from __future__ import print_function
|
||||
from __future__ import absolute_import, print_function
|
||||
import os
|
||||
import sys
|
||||
import traceback
|
||||
import time
|
||||
import logging
|
||||
import threading
|
||||
import time
|
||||
import traceback
|
||||
from random import randint
|
||||
|
||||
# Import salt libs
|
||||
from salt.exceptions import SaltSystemExit, SaltClientError, SaltReqTimeoutError
|
||||
import salt.defaults.exitcodes # pylint: disable=unused-import
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user