]> arthur.barton.de Git - bup.git/commit
cmd/bloom: use mkstemp() instead of NamedTemporaryFile().
authorAvery Pennarun <apenwarr@gmail.com>
Mon, 7 Feb 2011 08:55:10 +0000 (00:55 -0800)
committerAvery Pennarun <apenwarr@gmail.com>
Mon, 7 Feb 2011 09:31:49 +0000 (01:31 -0800)
commit825dea0746125f542dd84892fb5f3e9b98de3200
treeabccbc0d8dc60b44ed051044297f79cdc4676449
parent334480e7c081df14bee01e3d146ab59bf72d8bd0
cmd/bloom: use mkstemp() instead of NamedTemporaryFile().

Older versions of python (I tested python 2.5) don't support the
delete=False parameter to NamedTemporaryFile().  In any case, it's not
actually a temporary file since we're not planning to delete it.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
cmd/bloom-cmd.py