view tests/unwrap-message-id.py @ 51562:eac84af0c8cc stable

bundle-spec: properly parse boolean configuration as boolean Before this changesets "v2;revbranchcache=no" would actually request the addition for a revbranchcache part as the non-empty string `"0"` is `True`
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 05 Apr 2024 01:07:46 +0200
parents 6000f5b25c9b
children
line wrap: on
line source

import sys

for line in sys.stdin:
    if line.lower() in ("message-id: \n", "in-reply-to: \n"):
        line = line[:-2]
    print(line, end="")