Junio C Hamano wrote: > Junio C Hamano <gitster@xxxxxxxxx> writes: >> Perhaps a single-liner patch like this would work? >> >> - system([editor, template_file]) >> + system(["sh", "-c", editor, template_file]) > > Nah, scratch that. The list should be more like > > ["sh", "-c", "%s %s" % (editor, shlex.quote(template_file))] *nod* run-command.c does system(["sh", "-c", ('%s "$@"' % editor), editor, template_file]) to avoid having to figure out how to shell-quote template_file. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html