aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws/core.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-10-09 10:39:05 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-10-09 10:39:05 +0300
commitd278969719a9fd089fe39eb74c31fcfe1ddac4fd (patch)
treef14c4f24e0ed684e394a4bfeca4e7e63f38ffc74 /gsxws/core.py
parentc6c71309b48062ef9f0315b0d2fe69d6b65fe301 (diff)
downloadpy-gsxws-d278969719a9fd089fe39eb74c31fcfe1ddac4fd.tar.gz
py-gsxws-d278969719a9fd089fe39eb74c31fcfe1ddac4fd.tar.bz2
py-gsxws-d278969719a9fd089fe39eb74c31fcfe1ddac4fd.zip
Return diagnostic suites as two-tuple
Diffstat (limited to 'gsxws/core.py')
-rw-r--r--gsxws/core.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gsxws/core.py b/gsxws/core.py
index 0beed92..4c3c4a4 100644
--- a/gsxws/core.py
+++ b/gsxws/core.py
@@ -320,6 +320,10 @@ class GsxRequest(object):
# @hack FetchDiagnosticDetails doesn't follow the naming conventions
if method.endswith('FetchDiagnosticDetails'):
request_name = 'FetchDiagnosticDetailsRequestData'
+
+ # @hack FetchDiagnosticSuites doesn't follow the naming conventions
+ if method.endswith('FetchDiagnosticSuites'):
+ request_name = 'FetchDiagnosticSuitesRequestData'
request = ET.SubElement(root, request_name)
request.append(GSX_SESSION)