| Index: chrome/test/chromedriver/util.py
|
| diff --git a/chrome/test/chromedriver/util.py b/chrome/test/chromedriver/util.py
|
| index 8f67b9ea5268f91aa8c8606fd73983e8b5952c57..d4a6d749b404321b30f9e3fbc711992ce162608b 100644
|
| --- a/chrome/test/chromedriver/util.py
|
| +++ b/chrome/test/chromedriver/util.py
|
| @@ -87,7 +87,7 @@ def MakeTempDir(parent_dir=None):
|
| Returns:
|
| The absolute path to the temporary directory.
|
| """
|
| - path = tempfile.mkdtemp(dir=parent_dir)
|
| + path = tempfile.mkdtemp(prefix='chromedriver_', dir=parent_dir)
|
| atexit.register(MaybeDelete, path)
|
| return path
|
|
|
|
|