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>maint
parent
2d0d706e5f
commit
8b187e6b0e
|
|
@ -732,7 +732,7 @@ class P4Submit(Command):
|
||||||
if os.environ.has_key("P4EDITOR"):
|
if os.environ.has_key("P4EDITOR"):
|
||||||
editor = os.environ.get("P4EDITOR")
|
editor = os.environ.get("P4EDITOR")
|
||||||
else:
|
else:
|
||||||
editor = read_pipe("git var GIT_EDITOR")
|
editor = read_pipe("git var GIT_EDITOR").strip()
|
||||||
system(editor + " " + fileName)
|
system(editor + " " + fileName)
|
||||||
|
|
||||||
response = "y"
|
response = "y"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue