diff options
Diffstat (limited to 'gsxws/diagnostics.py')
-rw-r--r-- | gsxws/diagnostics.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gsxws/diagnostics.py b/gsxws/diagnostics.py index 38326da..d2a9696 100644 --- a/gsxws/diagnostics.py +++ b/gsxws/diagnostics.py @@ -1,8 +1,11 @@ +# -*- coding: utf-8 -*- + from core import GsxObject class Diagnostics(GsxObject): _namespace = "glob:" + def fetch(self): """ The Fetch Repair Diagnostics API allows the service providers/depot/carriers @@ -17,7 +20,7 @@ class Diagnostics(GsxObject): else: self._submit("lookupRequestData", "FetchRepairDiagnostic", "FetchRepairDiagnosticResponse") - return self._req.objects[0] + return self._req.objects def events(self): """ |