Mercurial > hg
view tests/unwrap-message-id.py @ 46817:dc101c236219
makefile: use Python 3 by default when building docs as well
I copied the snippet defining `PYTHON` from the root Makefile.
Differential Revision: https://phab.mercurial-scm.org/D10251
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Mon, 22 Mar 2021 13:21:12 -0700 |
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="")