Skip to content

Commit 5af5780

Browse files
authored
Merge pull request #2554 from keflavich/alma_docfix
Fix for #2553: incorrect keyword in ALMA doc example
2 parents f74e7c0 + 796a9ec commit 5af5780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/alma/alma.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ files:
387387
>>> alma = Alma()
388388
>>> alma.archive_url = 'https://almascience.eso.org' # optional to make doctest work
389389
>>> result = alma.query_region(s255ir, radius=0.034*u.deg)
390-
>>> uid_url_table = alma.get_data_info(result['obs_id'][0], expand_tarfiles=True)
390+
>>> uid_url_table = alma.get_data_info(result['member_ous_uid'][0], expand_tarfiles=True)
391391
>>> # downselect to just the FITSf files
392392
>>> fits_urls = [url for url in uid_url_table['access_url'] if '.fits' in url]
393393
>>> filelist = alma.download_files(fits_urls[:5]) # doctest: +SKIP

0 commit comments

Comments
 (0)