---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-17-f309939539cf> in <module>()
----> 1 t = tap.launch_job(adql)
/usr/lib/python3.6/site-packages/astroquery/utils/tap/core.py in launch_job(self, query, name, output_file, output_format, verbose, dump_to_file, upload_resource, upload_table_name)
229 self.__connHandler.dump_to_file(suitableOutputFile, response)
230 else:
--> 231 results = utils.read_http_response(response, output_format)
232 job.set_results(results)
233 print("Query finished.")
/usr/lib/python3.6/site-packages/astroquery/utils/tap/xmlparser/utils.py in read_http_response(response, outputFormat)
39 # If we want to use astropy.table, we have to read the data
40 data = io.BytesIO(response.read())
---> 41 return APTable.read(data, format=astropyFormat)
42
43
/usr/lib64/python3.6/site-packages/astropy/table/table.py in read(cls, *args, **kwargs)
2529 passed through to the underlying data reader (e.g. `~astropy.io.ascii.read`).
2530 """
-> 2531 out = io_registry.read(cls, *args, **kwargs)
2532 # For some readers (e.g., ascii.ecsv), the returned `out` class is not
2533 # guaranteed to be the same as the desired output `cls`. If so,
/usr/lib64/python3.6/site-packages/astropy/io/registry.py in read(cls, format, *args, **kwargs)
515
516 reader = get_reader(format, cls)
--> 517 data = reader(*args, **kwargs)
518
519 if not isinstance(data, cls):
/usr/lib64/python3.6/site-packages/astropy/io/votable/connect.py in read_table_votable(input, table_id, use_names_over_ids)
106 table = tables[0]
107 else:
--> 108 raise ValueError("No table found")
109 elif isinstance(input, VOTable):
110 table = input
ValueError: No table found