Increase timeout for wget

In case of using customer's http_proxy for deployment, it takes more then
3 seconds to reach destination host.

Change-Id: I4a0de155c98e4b6bc5fea913abc788ecb562d55b
diff --git a/src/com/mirantis/mk/Python.groovy b/src/com/mirantis/mk/Python.groovy
index ebb6fc9..7e34e20 100644
--- a/src/com/mirantis/mk/Python.groovy
+++ b/src/com/mirantis/mk/Python.groovy
@@ -31,7 +31,7 @@
     if(!env.getEnvironment().containsKey("OFFLINE_DEPLOYMENT") || !env["OFFLINE_DEPLOYMENT"].toBoolean()){
       try {
           //TODO: remove wget after global env prop enforcments
-          runVirtualenvCommand(path, "wget -q -T 3 --spider http://google.com && pip install -U setuptools pip")
+          runVirtualenvCommand(path, "wget -q -T 10 --spider http://google.com && pip install -U setuptools pip")
       } catch(Exception e) {
           common.warningMsg("Setuptools and pip cannot be updated, you might be offline")
       }