aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws.py
diff options
context:
space:
mode:
Diffstat (limited to 'gsxws.py')
-rwxr-xr-xgsxws.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gsxws.py b/gsxws.py
index 0685c62..e399cfa 100755
--- a/gsxws.py
+++ b/gsxws.py
@@ -604,9 +604,9 @@ class Repair(GsxObject):
"""
dt = self._make_type('ns1:markRepairCompleteRequestType')
dt.repairConfirmationNumbers = [self.data['dispatchId']]
- result = CLIENT.service.MarkRepairComplete(dt)
try:
+ result = CLIENT.service.MarkRepairComplete(dt)
return result.repairConfirmationNumbers
except suds.WebFault, e:
raise GsxError(fault=e)