#!/usr/bin/python

"""
Do not end lines with \r\n.
"""

error_msg="This line ends in \\r\\n. Please end it with \\n (UNIX line ending)."

regexp=r"""\r\n$"""

forbidden = [
    """Blub\r\n""",
]

allowed = [
    "Blub\n"
]
