Index: git_cl/git_cl.py |
=================================================================== |
--- git_cl/git_cl.py (revision 77893) |
+++ git_cl/git_cl.py (working copy) |
@@ -651,7 +651,7 @@ |
fileobj.write(starting_text) |
fileobj.close() |
- ret = subprocess.call(editor + ' ' + filename, shell=True) |
+ ret = subprocess.call(['env', editor, filename], shell=True) |
M-A Ruel
2011/03/12 00:35:31
Same comment as for http://codereview.chromium.org
|
if ret != 0: |
os.remove(filename) |
return |