From fcc13c3a79cecabf47e6756163dfd7b71ac72176 Mon Sep 17 00:00:00 2001
From: Kai Willadsen <kai.willadsen@gmail.com>
Date: Mon, 1 Apr 2013 08:27:45 +1000
Subject: [PATCH 1/2] Python 2.6 compat

---
 meld/filediff.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meld/filediff.py b/meld/filediff.py
index 9fcea6d..216121a 100644
--- a/meld/filediff.py
+++ b/meld/filediff.py
@@ -1172,13 +1172,13 @@ class FileDiff(melddoc.MeldDoc, gnomeglade.Component):
 
         def all_chunks():
             for x in removed_chunks:
-                print("removed: {}".format(x))
+                print("removed: {0}".format(x))
                 yield x
             for x in added_chunks:
-                print("added: {}".format(x))
+                print("added: {0}".format(x))
                 yield x
             if modified_chunks: # only one?
-                print("modified: {}".format(modified_chunks))
+                print("modified: {0}".format(modified_chunks))
                 yield modified_chunks
 
         # FIXME: We can't fix the paddings at this point because the textview
-- 
1.7.3.4

