Skip to content

Commit a89674d

Browse files
committed
row_limit fix
1 parent 3edd8e0 commit a89674d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/esasky/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ def query_sso_maps(self, sso_name, *, sso_type="ALL", missions=__ALL_STRING,
515515
sso_db_identifier = self._get_db_sso_identifier(sso['sso_type'])
516516
top = ""
517517
if sanitized_row_limit > 0:
518-
top = "TOP {row_limit} ".format(sanitized_row_limit)
518+
top = "TOP {row_limit} ".format(row_limit=sanitized_row_limit)
519519
for name in sanitized_missions:
520520
data_table = self._find_mission_tap_table_name(sso_json, name)
521521
mission_json = self._find_mission_parameters_in_json(data_table, sso_json)

0 commit comments

Comments
 (0)