Index: gclient_utils.py |
diff --git a/gclient_utils.py b/gclient_utils.py |
index fe3f7b850d1ec1dd1c84f53549448a278acfb5c8..8385deb054a8b6823f13b5cfeef4816f45999304 100644 |
--- a/gclient_utils.py |
+++ b/gclient_utils.py |
@@ -806,7 +806,7 @@ def GetEditor(git, git_editor=None): |
def RunEditor(content, git, git_editor=None): |
"""Opens up the default editor in the system to get the CL description.""" |
- file_handle, filename = tempfile.mkstemp(text=True) |
+ file_handle, filename = tempfile.mkstemp(text=True, prefix='cl_description') |
# Make sure CRLF is handled properly by requiring none. |
if '\r' in content: |
print >> sys.stderr, ( |