astropy / ccd-reduction-and-photometry-guide

Read the CCD guide here:
http://www.astropy.org/ccd-reduction-and-photometry-guide/
BSD 3-Clause "New" or "Revised" License
101 stars 46 forks source link

Addresses #353 by handling OSError when downloading the data files #354

Closed jogojapan closed 11 months ago

jogojapan commented 11 months ago

The OSError occurs when the download destination is on a different file system than the /tmp directory of the OS because pathlib.Path.rename() is used to move the file into its final destination, which throws OSError when renaming across different file systems. The change proposed here catches the exception and uses shutil.move to fix this.

mwcraig commented 11 months ago

Thanks @jogojapan