Example #1
0
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
Example #2
0
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
Example #3
0
def updatefits(struct):
    """update existing FITS file"""
    try:
        struct.flush()
    except:
        raise SaltIOError('Cannot update FITS file')
Example #4
0
def updatefits(struct):
    """update existing FITS file"""
    try:
        struct.flush()
    except:
        raise SaltIOError('Cannot update FITS file')