##// END OF EJS Templates
interfaces: convert `repository.irevisiondelta` from zope `Attribute` attrs...
interfaces: convert `repository.irevisiondelta` from zope `Attribute` attrs This is the same transformation as b455dfddfed0 did for dirstate.

File last commit:

r49730:6000f5b2 default
r53366:2aada52e default
Show More
unwrap-message-id.py
6 lines | 146 B | text/x-python | PythonLexer
/ tests / unwrap-message-id.py
import sys
for line in sys.stdin:
if line.lower() in ("message-id: \n", "in-reply-to: \n"):
line = line[:-2]
print(line, end="")