mirror of
https://github.com/git/git.git
synced 2024-11-27 20:14:30 +08:00
fix git-p4 editor invocation
The strip() is required to remove the trailing newline character, as already done elsewhere. Signed-off-by: Nicolas Pitre <nico@fluxnic.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
2d0d706e5f
commit
8b187e6b0e
@ -732,7 +732,7 @@ class P4Submit(Command):
|
||||
if os.environ.has_key("P4EDITOR"):
|
||||
editor = os.environ.get("P4EDITOR")
|
||||
else:
|
||||
editor = read_pipe("git var GIT_EDITOR")
|
||||
editor = read_pipe("git var GIT_EDITOR").strip()
|
||||
system(editor + " " + fileName)
|
||||
|
||||
response = "y"
|
||||
|
Loading…
Reference in New Issue
Block a user