equal
deleted
inserted
replaced
247 |
247 |
248 if 'objects' in response: |
248 if 'objects' in response: |
249 response['objects'] = sorted(response['objects'], |
249 response['objects'] = sorted(response['objects'], |
250 key=lambda p: p['oid']) |
250 key=lambda p: p['oid']) |
251 self.ui.debug('%s\n' |
251 self.ui.debug('%s\n' |
252 % json.dumps(response, indent=2, sort_keys=True)) |
252 % json.dumps(response, indent=2, |
|
253 separators=('', ': '), sort_keys=True)) |
253 |
254 |
254 return response |
255 return response |
255 |
256 |
256 def _checkforservererror(self, pointers, responses, action): |
257 def _checkforservererror(self, pointers, responses, action): |
257 """Scans errors from objects |
258 """Scans errors from objects |