Mercurial > hg
view tests/unwrap-message-id.py @ 45979:744ea3c4f41b
bisect: add `-G` to an `hg log` command in a test
This helps readers see what shape of DAG to expect
Differential Revision: https://phab.mercurial-scm.org/D9373
author | Simon Sapin <simon-commits@exyr.org> |
---|---|
date | Mon, 23 Nov 2020 12:54:46 +0100 |
parents | a1908951ca42 |
children | 6000f5b25c9b |
line wrap: on
line source
from __future__ import absolute_import, print_function import sys for line in sys.stdin: if line.lower() in ("message-id: \n", "in-reply-to: \n"): line = line[:-2] print(line, end="")