|
@@ -1058,9 +1058,9 @@ class OpenShiftCLI(object):
|
|
|
if output_type == 'json':
|
|
|
try:
|
|
|
rval['results'] = json.loads(stdout)
|
|
|
- except ValueError as err:
|
|
|
- if "No JSON object could be decoded" in err.args:
|
|
|
- err = err.args
|
|
|
+ except ValueError as verr:
|
|
|
+ if "No JSON object could be decoded" in verr.args:
|
|
|
+ err = verr.args
|
|
|
elif output_type == 'raw':
|
|
|
rval['results'] = stdout
|
|
|
|