Skip to content

Commit

Permalink
Fixing ecsv case
Browse files Browse the repository at this point in the history
  • Loading branch information
bsipocz committed May 1, 2024
1 parent 1db2786 commit 852e621
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions astroquery/utils/tap/xmlparser/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ def read_http_response(response, output_format, *, correct_units=True, use_names

else:
result = APTable.read(data, format=astropy_format)

elif output_format == 'ecsv':
result = APTable.read(data, format=astropy_format)
else:
result = APTable.read(data, format=astropy_format, use_names_over_ids=use_names_over_ids)

Expand Down

0 comments on commit 852e621

Please sign in to comment.