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