changeset 10901:997173e49115 stable

checklink: use an explicit prefix for the temporary file
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Wed, 14 Apr 2010 08:48:26 +0200
parents 2d61b612a09d
children 4eb6311d217a
files mercurial/util.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -682,7 +682,7 @@
     """check whether the given path is on a symlink-capable filesystem"""
     # mktemp is not racy because symlink creation will fail if the
     # file already exists
-    name = tempfile.mktemp(dir=path)
+    name = tempfile.mktemp(dir=path, prefix='hg-checklink-')
     try:
         os.symlink(".", name)
         os.unlink(name)