Skip to content

Commit 70a0659

Browse files
committed
Improve MaxResultsWarning message
1 parent 661a303 commit 70a0659

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

astroquery/eso/core.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ def query_tap_service(self,
282282
warnings.warn("Query returned no results", NoResultsWarning)
283283

284284
if len(table_to_return) == maxrec:
285-
warnings.warn(f"Results truncated to {maxrec}", MaxResultsWarning)
285+
warnings.warn(f"Results truncated to {maxrec}. "
286+
"To retrieve all the records set to None the ROW_LIMIT attribute", MaxResultsWarning)
286287

287288
return table_to_return
288289

0 commit comments

Comments
 (0)