Skip to content

Commit

Permalink
fix: fix a columns bug in analyze command
Browse files Browse the repository at this point in the history
  • Loading branch information
whdalsrnt committed Jun 11, 2023
1 parent da41e84 commit 09af182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spacectl/command/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def _execute_api(service, resource, verb, params=None, api_version='v1', output=
response_stream = _call_api(client, resource, verb, params, config=config)

for response in response_stream:
if verb in ['list', 'stat'] and parser:
if verb in ['list', 'stat', 'analyze'] and parser:
results = []
try:
for result in response.get('results', []):
Expand Down

0 comments on commit 09af182

Please sign in to comment.