Index: git_cl/git_cl.py |
=================================================================== |
--- git_cl/git_cl.py (revision 77911) |
+++ git_cl/git_cl.py (working copy) |
@@ -710,9 +710,8 @@ |
fileobj.write(starting_text) |
fileobj.close() |
- result = None |
try: |
- subprocess.check_call(['env', editor, filename], shell=True) |
+ subprocess.check_call(['env', editor, filename]) |
fileobj = open(filename) |
result = fileobj.read() |
fileobj.close() |