summaryrefslogtreecommitdiffstats
path: root/ovh/soapi/domainList
diff options
context:
space:
mode:
authortv <tv@xso>2011-08-22 16:06:13 +0200
committertv <tv@xso>2011-08-22 16:07:20 +0200
commit44a3b4f5cec7c77c906d913116701c7ec4b8bc6c (patch)
tree25d0b48c972447f22588a9f57f2afd621f95e334 /ovh/soapi/domainList
parente036c795201a3eea50ec6d966ef4118c173f5189 (diff)
ovh soapi *: use local wsdl copy
Diffstat (limited to 'ovh/soapi/domainList')
-rwxr-xr-xovh/soapi/domainList4
1 files changed, 3 insertions, 1 deletions
diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList
index b089f6a4..342eec72 100755
--- a/ovh/soapi/domainList
+++ b/ovh/soapi/domainList
@@ -1,6 +1,7 @@
#!/usr/bin/python
from os import environ
+from os.path import dirname, realpath
from SOAPpy import WSDL
from json import dumps, JSONEncoder
@@ -13,7 +14,8 @@ def default(o):
return list(iterable)
return JSONEncoder.default(o)
-soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl'
+soap = WSDL.Proxy(wsdl)
username = environ['KREBS_OVH_USER']
password = environ['KREBS_OVH_PASS']