author | Brendan Cully <brendan@kublai.com> |
Sat, 07 Jul 2007 15:09:28 -0700 | |
changeset 4851 | 9a45e1597d08 |
parent 4850 | 7031d9e2fa45 (current diff) |
parent 4849 | 035489f60842 (diff) |
child 4852 | edd07be943dd |
--- a/mercurial/commands.py Sat Jul 07 15:09:08 2007 -0700 +++ b/mercurial/commands.py Sat Jul 07 15:09:28 2007 -0700 @@ -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()