From d278969719a9fd089fe39eb74c31fcfe1ddac4fd Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Fri, 9 Oct 2015 10:39:05 +0300 Subject: Return diagnostic suites as two-tuple --- gsxws/core.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gsxws/core.py') 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) -- cgit v1.2.3