Commit a0480a1b by Michael DeHaan

Block some paramiko warnings that are not relevant.

parent e103bdda
...@@ -18,7 +18,13 @@ ...@@ -18,7 +18,13 @@
################################################ ################################################
import paramiko import warnings
# prevent paramiko warning noise
# see http://stackoverflow.com/questions/3920502/
with warnings.catch_warnings():
warnings.simplefilter("ignore")
import paramiko
import traceback import traceback
import os import os
import time import time
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment