Whoops placeholders had incorect parity

This commit is contained in:
Stefano Rivera 2011-11-13 22:54:32 +02:00
parent 09e468211a
commit 1a507e34b0
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ def request_backport(package_spph, source, destinations):
"",
"Reason for the backport:",
"========================",
"<<< Enter your reasoning here >>>",
">>> Enter your reasoning here <<<",
"",
"Testing:",
"========",

View File

@ -116,7 +116,7 @@ class EditFile(object):
self.filename = filename
self.description = description
if placeholders is None:
placeholders = (re.compile(r'^<<<.*>>>$', re.UNICODE),)
placeholders = (re.compile(r'^>>>.*<<<$', re.UNICODE),)
self.placeholders = placeholders
def edit(self, optional=False):