mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Updating the six import to use salt version of six. Reverting a change in the adb beacon that broke tests.
This commit is contained in:
parent
ff7e7011be
commit
907e1ddf9f
@ -56,7 +56,7 @@ def validate(config):
|
||||
log.info('Need a one of the following adb '
|
||||
'states: %s', ', '.join(states))
|
||||
return False, ('Need a one of the following adb '
|
||||
'states: %s', ', '.join(states))
|
||||
'states: {0}'.format(', '.join(states)))
|
||||
return True, 'Valid beacon configuration'
|
||||
|
||||
|
||||
|
@ -14,8 +14,9 @@ Dependencies
|
||||
# Import Python libs
|
||||
from __future__ import absolute_import, unicode_literals
|
||||
import logging
|
||||
import six
|
||||
import time
|
||||
|
||||
from salt.ext import six
|
||||
from salt.ext.six.moves import map
|
||||
|
||||
# Import 3rd Party libs
|
||||
|
@ -8,8 +8,9 @@ from __future__ import absolute_import
|
||||
import atexit
|
||||
import logging
|
||||
import select
|
||||
import six
|
||||
import time
|
||||
|
||||
from salt.ext import six
|
||||
from salt.ext.six.moves import map
|
||||
|
||||
# Import 3rd Party libs
|
||||
|
@ -14,8 +14,8 @@ from __future__ import absolute_import, unicode_literals
|
||||
|
||||
import logging
|
||||
import re
|
||||
import six
|
||||
|
||||
from salt.ext import six
|
||||
from salt.ext.six.moves import map
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
@ -7,8 +7,8 @@ Beacon to emit Twilio text messages
|
||||
from __future__ import absolute_import, unicode_literals
|
||||
|
||||
import logging
|
||||
import six
|
||||
|
||||
from salt.ext import six
|
||||
from salt.ext.six.moves import map
|
||||
|
||||
# Import 3rd Party libs
|
||||
|
Loading…
Reference in New Issue
Block a user