Mercurial > hg
changeset 4849:035489f60842
Use a prefix for debuginstall tempfiles.
This way you know where the files came from if they don't get removed.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sat, 07 Jul 2007 20:52:31 +0200 |
parents | 5e365008360f |
children | 9a45e1597d08 |
files | mercurial/commands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Jul 06 10:29:09 2007 -0700 +++ b/mercurial/commands.py Sat Jul 07 20:52:31 2007 +0200 @@ -834,7 +834,7 @@ '''test Mercurial installation''' def writetemp(contents): - (fd, name) = tempfile.mkstemp() + (fd, name) = tempfile.mkstemp(prefix="hg-debuginstall-") f = os.fdopen(fd, "wb") f.write(contents) f.close()