SLA code updated and new image for SmartSantander Application Service added
[unfold.git] / sla / slaclient / restclient.py
index cdada8a..c00ca2f 100755 (executable)
@@ -117,6 +117,7 @@ class Client(object):
         result = requests.get(url, **kwargs)
         print "GET {} {} {}".format(
             result.url, result.status_code, result.text[0:70])
+
         return result
     
     def post(self, path, data=None, **kwargs):
@@ -279,7 +280,9 @@ class Agreements(object):
         """
         path = _buildpath_(agreementid, "guaranteestatus")
         r = self.res.client.get(path, headers={'accept': 'application/json'})
+
         json_obj = r.json()
+        
         status = wsag_model.AgreementStatus.json_decode(json_obj)
 
         return status, r