SLA code updated and new image for SmartSantander Application Service added
[unfold.git] / sla / slaclient / restclient.py
index 9d1306b..c00ca2f 100755 (executable)
@@ -281,19 +281,10 @@ class Agreements(object):
         path = _buildpath_(agreementid, "guaranteestatus")
         r = self.res.client.get(path, headers={'accept': 'application/json'})
 
-        print "---- JSON Response ----"
-        print r.text
-
         json_obj = r.json()
-        print "-- json_obj() --"
-        print type(json_obj)
-        print json_obj
         
         status = wsag_model.AgreementStatus.json_decode(json_obj)
 
-        print "---- STATUS ----"
-        print status
-
         return status, r
     
     def create(self, agreement):