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))] if your Python has shlex.quote, that is; it may be pipes.quote instead. -- 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