|
@@ -1548,7 +1548,7 @@ class OCObject(OpenShiftCLI):
|
|
|
if state == 'absent':
|
|
|
# verify its not in our results
|
|
|
if (params['name'] is not None or params['selector'] is not None) and \
|
|
|
- (len(api_rval['results']) == 0 or len(api_rval['results'][0].getattr('items', [])) == 0):
|
|
|
+ (len(api_rval['results']) == 0 or len(api_rval['results'][0].get('items', [])) == 0):
|
|
|
return {'changed': False, 'state': state}
|
|
|
|
|
|
if check_mode:
|