Skip to content
Snippets Groups Projects
Commit c6c6418f authored by Mads M. Pedersen's avatar Mads M. Pedersen
Browse files

paramiko optional first step

parent 94760161
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -5,9 +5,13 @@ Created on 27/11/2015
'''
from io import StringIO
import paramiko
import os
import sys
try:
import paramiko
except Exception as e:
sys.stderr.write("Paramiko(ssh client module) not imported\n%s"%str(e) )
import os
import threading
from _collections import deque
import time
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment