def updatefits(struct,logfile): status = 0 try: struct.flush() except: message = 'ERROR -- SALTIO.UPDATEFITS: cannot update FITS file' status = saltprint.err(logfile,message) return status
def updatefits(struct): """update existing FITS file""" try: struct.flush() except: raise SaltIOError('Cannot update FITS file')