Make third-party imports clearer in launch/.
This is a minor step towards PEP-8 as well, but mainly makes it easier to document what third party modules are needed. Change-Id: Id901ef437fcdeb11c8dd555e8db7c13daa86c4b2
This commit is contained in:
@@ -18,20 +18,21 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import time
|
||||
import os
|
||||
import traceback
|
||||
import socket
|
||||
|
||||
import novaclient
|
||||
from novaclient.v1_1 import client as Client11
|
||||
try:
|
||||
from v1_0 import client as Client10
|
||||
except:
|
||||
pass
|
||||
import time
|
||||
import os
|
||||
import traceback
|
||||
import paramiko
|
||||
import socket
|
||||
import salt.crypt
|
||||
from sshclient import SSHClient
|
||||
|
||||
from sshclient import SSHClient
|
||||
|
||||
def iterate_timeout(max_seconds, purpose):
|
||||
start = time.time()
|
||||
|
Reference in New Issue
Block a user