From 8405581c331cc38e1162f4cff541a5ab87fcdbe3 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Tue, 15 Nov 2011 22:58:24 -0800 Subject: [PATCH] Escape some characters in an old blog post, newer jekyll thinks they're liquid tags --- .../2008-11-23-git-integration-with-hudson-and-trac.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_posts/2008-11-23-git-integration-with-hudson-and-trac.html b/_posts/2008-11-23-git-integration-with-hudson-and-trac.html index 6db50e4..5eb161a 100644 --- a/_posts/2008-11-23-git-integration-with-hudson-and-trac.html +++ b/_posts/2008-11-23-git-integration-with-hudson-and-trac.html @@ -103,8 +103,8 @@ def find_re(commit):
def handle_re(branch, commit, ticket):
print 'Annotating ticket #%s' % ticket
message = '''The following was committed in "%(branch)s":
- {{{
-%(commit)s }}}
+ \{\{\{
+%(commit)s \}\}\}
''' % {'branch' : branch, 'commit' : commit}
_update_ticket(ticket, message)

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