Escape some characters in an old blog post, newer jekyll thinks they're liquid tags

This commit is contained in:
R. Tyler Croy 2011-11-15 22:58:24 -08:00
parent f8cde5339d
commit 8405581c33
1 changed files with 4 additions and 4 deletions

View File

@ -103,8 +103,8 @@ def find_re(commit): <br>
def handle_re(branch, commit, ticket): <br>
print 'Annotating ticket #%s' % ticket <br>
message = '''The following was committed in "%(branch)s": <br>
{{{ <br>
%(commit)s }}} <br>
\{\{\{ <br>
%(commit)s \}\}\} <br>
''' % {'branch' : branch, 'commit' : commit} <br>
_update_ticket(ticket, message) <br>
<br>
@ -113,8 +113,8 @@ def find_qa(commit): <br>
def handle_qa(branch, commit, ticket): <br>
print 'Marking ticket #%s as "ready for QA"' % ticket <br>
message = '''The following was committed in "%(branch)s": <br>
{{{ <br>
%(commit)s }}} <br>
\{\{\{ <br>
%(commit)s \}\}\} <br>
''' % {'branch' : branch, 'commit' : commit} <br>
rpc = _update_ticket(ticket, message, options={'status' : 'qa'}) <br>
<br>