Ignore:
Timestamp:
Nov 26, 2009, 9:45:03 AM (14 years ago)
Author:
broder
Message:

Replace NamedTemporaryFile? with mkstemp in invirt-build-conf and
invirt-submit-build.

NamedTemporaryFile? lacks the delete kwarg in Python 2.5, meaning that
files are always deleted when the fd is closed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-dev/invirt-submit-build

    r2563 r2567  
    4444    # written the file out, first write the queue entry to a temporary
    4545    # file, and then move it into the queue directory.
    46     q = tempfile.NamedTemporaryFile(delete=False)
     46    q_fd, q_name = tempfile.mkstemp()
     47    q = os.fdopen(q_fd)
    4748    print >>q, "%s %s %s %s" % (pocket, package, commit, principal)
    48     os.rename(q.name, q_path)
     49    os.rename(q_name, q_path)
    4950
    5051
Note: See TracChangeset for help on using the changeset viewer.