mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixed lint failures
This commit is contained in:
parent
c1efae673a
commit
612191c9fe
3 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@ Set up the Salt multimaster test suite
|
|||
'''
|
||||
|
||||
# Import Python libs
|
||||
from __future__ import absolute_import, print_function
|
||||
import copy
|
||||
import os
|
||||
import stat
|
||||
|
|
|
@ -42,7 +42,7 @@ from tests.support.paths import ScriptPathMixin, INTEGRATION_TEST_DIR, CODE_DIR,
|
|||
|
||||
# Import 3rd-party libs
|
||||
from salt.ext import six
|
||||
from salt.ext.six.moves import cStringIO # pylint: disable=import-error
|
||||
from salt.ext.six.moves import cStringIO, range # pylint: disable=import-error
|
||||
|
||||
STATE_FUNCTION_RUNNING_RE = re.compile(
|
||||
r'''The function (?:"|')(?P<state_func>.*)(?:"|') is running as PID '''
|
||||
|
|
|
@ -215,7 +215,7 @@ RUNTIME_VARS = RuntimeVars(
|
|||
TMP_SYNDIC_MASTER_CONF_DIR=paths.TMP_SYNDIC_MASTER_CONF_DIR,
|
||||
TMP_SYNDIC_MINION_CONF_DIR=paths.TMP_SYNDIC_MINION_CONF_DIR,
|
||||
TMP_MM_CONF_DIR=paths.TMP_MM_CONF_DIR,
|
||||
TMP_MM_SUB_CONF_DIR = paths.TMP_MM_SUB_CONF_DIR,
|
||||
TMP_MM_SUB_CONF_DIR=paths.TMP_MM_SUB_CONF_DIR,
|
||||
TMP_SCRIPT_DIR=paths.TMP_SCRIPT_DIR,
|
||||
TMP_STATE_TREE=paths.TMP_STATE_TREE,
|
||||
TMP_PILLAR_TREE=paths.TMP_PILLAR_TREE,
|
||||
|
|
Loading…
Add table
Reference in a new issue